Added AttributeList#asMap, so we can use these attributes for the bazaar terminals

This commit is contained in:
Ziggy
2023-04-05 19:41:35 +02:00
parent 7eae4f1b29
commit 19d36c5f2f

View File

@@ -1,3 +1,29 @@
/***********************************************************************************
* Copyright (c) 2023 /// 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 PSWGCommon. *
* *
* --------------------------------------------------------------------------------*
* *
* PSWGCommon 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. *
* *
* PSWGCommon 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 PSWGCommon. If not, see <http://www.gnu.org/licenses/>. *
***********************************************************************************/
package com.projectswg.common.network.packets.swg.zone.spatial
import com.projectswg.common.encoding.Encodable
@@ -10,6 +36,8 @@ class AttributeList : Encodable {
private val map: MutableMap<String, String> = LinkedHashMap()
fun asMap() = map.toMap()
fun putPercent(attribute: String, value: Double) {
val nf = NumberFormat.getInstance(Locale.US)
nf.maximumFractionDigits = 2