mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-05 06:17:19 -04:00
Might not work until next commit; I need to pull and commit due to an outdated engine so I can test. Fixed SWGList Improved SWGMap Added SWGMultiMap Refactored GCWZones to be more flexible and scriptable. Added Factional Presence. ~will have no effect in water. Added minutely GCWZone updates. Added 15-minutely other server GCWZone updates. The GCWZone history should now work correctly. Added two-daily weak GCW Zone resets. Added a few datatables for PvpStatus and Factions. Moved list objects to their own relevent resource folders.
82 lines
2.7 KiB
Java
82 lines
2.7 KiB
Java
/*******************************************************************************
|
|
* Copyright (c) 2013 <Project SWG>
|
|
*
|
|
* This File is part of NGECore2.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Using NGEngine to work with NGECore2 is making a combined work based on NGEngine.
|
|
* Therefore all terms and conditions of the GNU Lesser General Public License cover the combination.
|
|
******************************************************************************/
|
|
package protocol.swg;
|
|
|
|
import java.nio.ByteOrder;
|
|
import java.util.Map;
|
|
import java.util.TreeMap;
|
|
|
|
import org.apache.mina.core.buffer.IoBuffer;
|
|
|
|
import resources.common.Opcodes;
|
|
import resources.gcw.CurrentServerGCWZonePercent;
|
|
|
|
public class GcwRegionsRsp extends SWGMessage {
|
|
|
|
private Map<String, Map<String, CurrentServerGCWZonePercent>> zoneMap;
|
|
|
|
public GcwRegionsRsp(Map<String, Map<String, CurrentServerGCWZonePercent>> zoneMap) {
|
|
this.zoneMap = new TreeMap<String, Map<String, CurrentServerGCWZonePercent>>();
|
|
|
|
for (String planet : zoneMap.keySet()) {
|
|
if (planet != "galaxy") {
|
|
for (String zone : zoneMap.get(planet).keySet()) {
|
|
if (zoneMap.get(planet).get(zone).getRadius() > 0) {
|
|
if (!this.zoneMap.containsKey(planet)) {
|
|
this.zoneMap.put(planet, new TreeMap<String, CurrentServerGCWZonePercent>());
|
|
}
|
|
|
|
this.zoneMap.get(planet).put(zone, zoneMap.get(planet).get(zone));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public void deserialize(IoBuffer data) {
|
|
|
|
}
|
|
|
|
public IoBuffer serialize() {
|
|
IoBuffer result = IoBuffer.allocate(4473).order(ByteOrder.LITTLE_ENDIAN);
|
|
|
|
result.putShort((short) 2);
|
|
result.putInt(Opcodes.GcwRegionsRsp);
|
|
result.putInt(zoneMap.size());
|
|
|
|
for (String planet : zoneMap.keySet()) {
|
|
result.put(getAsciiString(planet));
|
|
result.putInt(zoneMap.get(planet).size());
|
|
|
|
for (String zone : zoneMap.get(planet).keySet()) {
|
|
result.put(getAsciiString(zone));
|
|
result.putFloat(zoneMap.get(planet).get(zone).getPosition().x);
|
|
result.putFloat(zoneMap.get(planet).get(zone).getPosition().z);
|
|
result.putFloat(zoneMap.get(planet).get(zone).getRadius());
|
|
}
|
|
}
|
|
|
|
return result.flip();
|
|
}
|
|
|
|
}
|