Added EnterStructurePlacementModeMessage

This commit is contained in:
Obique PSWG
2022-07-23 17:04:54 -05:00
parent 2079a89c7c
commit 6456cadbff
2 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,60 @@
/***********************************************************************************
* Copyright (c) 2022 /// Project SWG /// www.projectswg.com *
* *
* ProjectSWG is the first NGE emulator for Star Wars Galaxies founded on *
* July 7th, 2011 after SOE announced the official shutdown of Star Wars Galaxies. *
* Our goal is to create an emulator which will provide a server for players to *
* continue playing a game similar to the one they used to play. We are basing *
* it on the final publish of the game prior to end-game events. *
* *
* This file is part of Holocore. *
* *
* --------------------------------------------------------------------------------*
* *
* Holocore is free software: you can redistribute it and/or modify *
* it under the terms of the GNU Affero General Public License as *
* published by the Free Software Foundation, either version 3 of the *
* License, or (at your option) any later version. *
* *
* Holocore is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Affero General Public License for more details. *
* *
* You should have received a copy of the GNU Affero General Public License *
* along with Holocore. If not, see <http://www.gnu.org/licenses/>. *
***********************************************************************************/
package com.projectswg.common.network.packets.swg.zone.structures
import com.projectswg.common.network.NetBuffer
import com.projectswg.common.network.packets.SWGPacket
import com.projectswg.common.network.packets.swg.zone.CmdSceneReady
data class EnterStructurePlacementModeMessage(
var deedId: Long = 0,
var template: String = ""
) : SWGPacket() {
override fun decode(data: NetBuffer) {
if (!super.checkDecode(data, CmdSceneReady.CRC))
return
deedId = data.long
template = data.ascii
}
override fun encode(): NetBuffer {
val data = NetBuffer.allocate(6 + 8 + 2 + template.length)
data.addShort(2)
data.addInt(CRC)
data.addLong(deedId)
data.addAscii(template)
return data
}
companion object {
val CRC = getCrc("EnterStructurePlacementModeMessage")
}
}

View File

@@ -70,6 +70,7 @@ module com.projectswg.common {
exports com.projectswg.common.network.packets.swg.zone.resource;
exports com.projectswg.common.network.packets.swg.zone.server_ui;
exports com.projectswg.common.network.packets.swg.zone.spatial;
exports com.projectswg.common.network.packets.swg.zone.structures;
exports com.projectswg.common.network.packets.swg.zone.trade;
exports com.projectswg.common.network.hcap;
exports com.projectswg.common.persistable;