summaryrefslogtreecommitdiff
path: root/NET/worlds/scape/Point2EditorDialog.java
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-02-12 22:33:32 -0800
committerFuwn <[email protected]>2026-02-12 22:33:32 -0800
commitc7a9d4a6bd53ed7d61731770f2f10e8b9fd435f9 (patch)
treedf9f48bf128a6c0186a8e91857d6ff30fe0e9f18 /NET/worlds/scape/Point2EditorDialog.java
downloadworldsplayer-c7a9d4a6bd53ed7d61731770f2f10e8b9fd435f9.tar.xz
worldsplayer-c7a9d4a6bd53ed7d61731770f2f10e8b9fd435f9.zip
Initial commit
Diffstat (limited to 'NET/worlds/scape/Point2EditorDialog.java')
-rw-r--r--NET/worlds/scape/Point2EditorDialog.java66
1 files changed, 66 insertions, 0 deletions
diff --git a/NET/worlds/scape/Point2EditorDialog.java b/NET/worlds/scape/Point2EditorDialog.java
new file mode 100644
index 0000000..61f62e6
--- /dev/null
+++ b/NET/worlds/scape/Point2EditorDialog.java
@@ -0,0 +1,66 @@
+package NET.worlds.scape;
+
+import java.util.StringTokenizer;
+
+class Point2EditorDialog extends ListEditorDialog {
+ protected Property property;
+ protected Point2 p;
+
+ Point2EditorDialog(EditTile parent, String title, Property property) {
+ super(parent, title);
+ this.property = property;
+ this.ready();
+ }
+
+ @Override
+ protected void build() {
+ this.p = (Point2)this.property.get();
+ super.build();
+ }
+
+ @Override
+ protected int getElementCount() {
+ return 2;
+ }
+
+ @Override
+ protected String getElement(int index) {
+ switch (index) {
+ case 0:
+ return "" + this.p.x;
+ default:
+ return "" + this.p.y;
+ }
+ }
+
+ @Override
+ protected boolean setElements(StringTokenizer e) {
+ Point2 p = new Point2();
+ int count = 0;
+
+ while (e.hasMoreTokens()) {
+ try {
+ float tmp = Float.valueOf(e.nextToken());
+ switch (count++) {
+ case 0:
+ p.x = tmp;
+ break;
+ case 1:
+ p.y = tmp;
+ break;
+ default:
+ return false;
+ }
+ } catch (Exception var5) {
+ return false;
+ }
+ }
+
+ if (count != 2) {
+ return false;
+ } else {
+ this.parent.addUndoableSet(this.property, p);
+ return true;
+ }
+ }
+}