aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-07-21 16:00:53 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-07-21 16:00:53 +0200
commit15a3f97d10206cc06efd636cf30a0dfb21f2f125 (patch)
tree6ed5bf76b53308f436f9fa232759c9038cfde93f /src/main
parentd77d023ad31002b9ba13eb11c1e0c6f9453edb85 (diff)
downloadskyhanni-15a3f97d10206cc06efd636cf30a0dfb21f2f125.tar.gz
skyhanni-15a3f97d10206cc06efd636cf30a0dfb21f2f125.tar.bz2
skyhanni-15a3f97d10206cc06efd636cf30a0dfb21f2f125.zip
bigger fixes
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/Storage.java30
-rw-r--r--src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt34
2 files changed, 57 insertions, 7 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/Storage.java b/src/main/java/at/hannibal2/skyhanni/config/Storage.java
index 24f100751..1236d4313 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/Storage.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/Storage.java
@@ -295,6 +295,26 @@ public class Storage {
public long totalAmount;
@Expose
public boolean hidden;
+
+ @Override
+ public String toString() {
+ return "SlayerItemProfit{" +
+ "internalName='" + internalName + '\'' +
+ ", timesDropped=" + timesDropped +
+ ", totalAmount=" + totalAmount +
+ ", hidden=" + hidden +
+ '}';
+ }
+ }
+
+ @Override
+ public String toString() {
+ return "SlayerProfitList{" +
+ "items=" + items +
+ ", mobKillCoins=" + mobKillCoins +
+ ", slayerSpawnCost=" + slayerSpawnCost +
+ ", slayerCompletedCount=" + slayerCompletedCount +
+ '}';
}
}
@@ -314,6 +334,16 @@ public class Storage {
@Expose
public String itemGoal = "?";
+
+ @Override
+ public String toString() {
+ return "SlayerRngMeterStorage{" +
+ "currentMeter=" + currentMeter +
+ ", gainPerBoss=" + gainPerBoss +
+ ", goalNeeded=" + goalNeeded +
+ ", itemGoal='" + itemGoal + '\'' +
+ '}';
+ }
}
}
} \ No newline at end of file
diff --git a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt
index 32cd69991..d8d3910f8 100644
--- a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt
+++ b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt
@@ -178,7 +178,7 @@ object SkyHanniConfigSearchResetCommand {
val className = obj.getClassName()
if (!classFilter(className)) continue
val objectName = obj.getObjectName()
- if (objectName.startsWith(className) && (objectName.startsWith("at.hannibal2.skyhanni.config.features.") ||
+ if (obj !is Runnable && objectName.startsWith(className) && (objectName.startsWith("at.hannibal2.skyhanni.config.features.") ||
objectName.startsWith("at.hannibal2.skyhanni.config.Storage"))
) {
"<category>"
@@ -212,17 +212,23 @@ object SkyHanniConfigSearchResetCommand {
}
private fun loadAllFields(parentName: String, obj: Any, depth: Int = 0): Map<String, Any?> {
- if (depth == 10) return emptyMap() // this is only a safety backup, needs increasing maybe someday
val map = mutableMapOf<String, Any?>()
+ if (depth == 8) { // this is only a backup for safety, needs increasing someday maybe
+ map["$parentName.<end of depth>"] = null
+ return map
+ }
for (field in obj.javaClass.fields) {
+ // TODO add this maybe?
+// val b = (field.modifiers & Modifiers.STATIC) == 0
+
val name = field.name
val fieldName = "$parentName.$name"
field.isAccessible = true
val newObj = field.get(obj)
map[fieldName] = newObj
if (newObj != null) {
- if (newObj !is Boolean && newObj !is String && newObj !is Long && newObj !is Int) {
- if (newObj !is Position) {
+ if (newObj !is Boolean && newObj !is String && newObj !is Long && newObj !is Int && newObj !is Double) {
+ if (newObj !is Position && !newObj.javaClass.isEnum) {
map.putAll(loadAllFields(fieldName, newObj, depth + 1))
}
}
@@ -233,6 +239,14 @@ object SkyHanniConfigSearchResetCommand {
}
private fun Any.getClassName(): String {
+ if (this is io.github.moulberry.moulconfig.observer.Property<*>) {
+ val value = javaClass.getDeclaredField("value").makeAccessible().get(this)
+ val name = value.getClassName()
+ return "moulconfig.Property<$name>"
+ }
+
+ if (this is Runnable) return "Runnable"
+
// we do not use javaClass.simpleName since we want to catch edge cases
val name = javaClass.name
return when (name) {
@@ -241,7 +255,9 @@ object SkyHanniConfigSearchResetCommand {
"java.lang.Integer" -> "Int"
"java.lang.Long" -> "Long"
"java.lang.String" -> "String"
+ "java.lang.Double" -> "Double"
"io.github.moulberry.moulconfig.observer.Property" -> "moulconfig.Property"
+ "com.google.gson.internal.LinkedTreeMap" -> "LinkedTreeMap"
"java.util.ArrayList" -> "List"
"java.util.HashMap" -> "Map"
@@ -257,6 +273,7 @@ object SkyHanniConfigSearchResetCommand {
val y = javaClass.getDeclaredField("y").makeAccessible().get(this)
return "($x, $y)"
}
+
if (this is String) {
return if (toString() == "") {
"<empty string>"
@@ -264,13 +281,16 @@ object SkyHanniConfigSearchResetCommand {
"'$this'"
}
}
+
if (this is io.github.moulberry.moulconfig.observer.Property<*>) {
val value = javaClass.getDeclaredField("value").makeAccessible().get(this)
- val name = value.getClassName()
- return "moulconfig.Property<$name> = ${value.getObjectName()}"
+ return value.getObjectName()
}
- if (this is Int || this is Int) return addSeparators()
+ if (this is Int) return addSeparators()
+ if (this is Long) return addSeparators()
+
+ if (this is Runnable) return "<Runnable>"
return toString()
}