+ Added first-pass leaderboard command and all requirements

This commit is contained in:
Matthew Cech
2019-06-02 21:36:42 -07:00
parent 2fbb74198c
commit 31f9689140
17 changed files with 240 additions and 30 deletions
+9 -2
View File
@@ -1,6 +1,7 @@
package core;
import java.util.Date;
import java.util.List;
import java.util.Vector;
import utils.GlobalLog;
import utils.LogFilter;
@@ -128,6 +129,10 @@ public class DatabaseManager
}
}
public List<String> scrapeGlobalForString(String substring)
{
return globalDataDriver.GetKeysWith(substring);
}
/////////////////
// Global Data //
@@ -141,7 +146,8 @@ public class DatabaseManager
}
}
private String globalGetRemoteValue(String key)
// You can get values, but not modify them.
public String globalGetRemoteValue(String key)
{
synchronized(globalDataDriver)
{
@@ -170,7 +176,8 @@ public class DatabaseManager
}
}
private String characterGetRemoteValue(String key)
// You can get values, but not modify them.
public String characterGetRemoteValue(String key)
{
synchronized(characterDataDriver)
{