diff options
| author | Fuwn <[email protected]> | 2026-02-12 22:33:32 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-12 22:33:32 -0800 |
| commit | c7a9d4a6bd53ed7d61731770f2f10e8b9fd435f9 (patch) | |
| tree | df9f48bf128a6c0186a8e91857d6ff30fe0e9f18 /NET/worlds/scape/Point3EditorDialog.java | |
| download | worldsplayer-c7a9d4a6bd53ed7d61731770f2f10e8b9fd435f9.tar.xz worldsplayer-c7a9d4a6bd53ed7d61731770f2f10e8b9fd435f9.zip | |
Initial commit
Diffstat (limited to 'NET/worlds/scape/Point3EditorDialog.java')
| -rw-r--r-- | NET/worlds/scape/Point3EditorDialog.java | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/NET/worlds/scape/Point3EditorDialog.java b/NET/worlds/scape/Point3EditorDialog.java new file mode 100644 index 0000000..02134cb --- /dev/null +++ b/NET/worlds/scape/Point3EditorDialog.java @@ -0,0 +1,71 @@ +package NET.worlds.scape; + +import java.util.StringTokenizer; + +class Point3EditorDialog extends ListEditorDialog { + protected Property property; + protected Point3 p; + + Point3EditorDialog(EditTile parent, String title, Property property) { + super(parent, title); + this.property = property; + this.ready(); + } + + @Override + protected void build() { + this.p = (Point3)this.property.get(); + super.build(); + } + + @Override + protected int getElementCount() { + return 3; + } + + @Override + protected String getElement(int index) { + switch (index) { + case 0: + return "" + this.p.x; + case 1: + return "" + this.p.y; + default: + return "" + this.p.z; + } + } + + @Override + protected boolean setElements(StringTokenizer e) { + Point3 p = new Point3(); + 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; + case 2: + p.z = tmp; + break; + default: + return false; + } + } catch (Exception var5) { + return false; + } + } + + if (count != 3) { + return false; + } else { + this.parent.addUndoableSet(this.property, p); + return true; + } + } +} |