diff options
| author | Fuwn <[email protected]> | 2021-05-03 16:38:41 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-03 16:38:41 -0700 |
| commit | e1e781bb2135ef78592226f1a3eaba4925702f1f (patch) | |
| tree | 8a5b590463ed413e1c6eabb719130e701b95ca63 /NET/worlds/scape/Whiteboard.java | |
| download | worlds.jar-main.tar.xz worlds.jar-main.zip | |
Diffstat (limited to 'NET/worlds/scape/Whiteboard.java')
| -rw-r--r-- | NET/worlds/scape/Whiteboard.java | 146 |
1 files changed, 146 insertions, 0 deletions
diff --git a/NET/worlds/scape/Whiteboard.java b/NET/worlds/scape/Whiteboard.java new file mode 100644 index 0000000..111cb83 --- /dev/null +++ b/NET/worlds/scape/Whiteboard.java @@ -0,0 +1,146 @@ +/* */ package NET.worlds.scape; +/* */ +/* */ import NET.worlds.console.Console; +/* */ import java.awt.Color; +/* */ import java.io.DataInputStream; +/* */ import java.io.DataOutputStream; +/* */ import java.io.IOException; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class Whiteboard +/* */ extends Attribute +/* */ { +/* */ public Whiteboard(int attrID) +/* */ { +/* 28 */ super(attrID); +/* */ } +/* */ +/* */ +/* */ +/* */ public Whiteboard() {} +/* */ +/* */ +/* */ protected void noteAddingTo(SuperRoot owner) +/* */ { +/* 38 */ nada((Surface)((Sharer)owner).getOwner()); +/* */ +/* 40 */ setOwnerText(); +/* */ } +/* */ +/* */ +/* 44 */ String _line = "default text"; +/* */ +/* */ +/* */ +/* */ +/* */ public void set(String s) +/* */ { +/* 51 */ this._line = s; +/* */ +/* 53 */ setOwnerText(); +/* */ +/* 55 */ noteChange(); +/* */ } +/* */ +/* */ +/* */ protected void nada(Surface s) {} +/* */ +/* */ private void setOwnerText() +/* */ { +/* 63 */ Sharer sh = (Sharer)getOwner(); +/* 64 */ if (sh == null) { +/* 65 */ return; +/* */ } +/* 67 */ Surface surf = (Surface)sh.getOwner(); +/* */ +/* 69 */ surf.setMaterial(new Material(new StringTexture(this._line, +/* 70 */ Console.message("MaterialFont"), 20, Color.black, +/* 71 */ Color.white))); +/* */ } +/* */ +/* */ +/* */ +/* */ public String get() +/* */ { +/* 78 */ return this._line; +/* */ } +/* */ +/* */ public void generateNetData(DataOutputStream s) +/* */ throws IOException +/* */ { +/* 84 */ s.writeUTF(this._line); +/* */ } +/* */ +/* */ public void setFromNetData(DataInputStream ds, int len) throws IOException +/* */ { +/* 89 */ set(ds.readUTF()); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public Object properties(int index, int offset, int mode, Object value) +/* */ throws NoSuchPropertyException +/* */ { +/* 99 */ Object ret = null; +/* 100 */ switch (index - offset) { +/* */ case 0: +/* 102 */ if (mode == 0) { +/* 103 */ ret = StringPropertyEditor.make( +/* 104 */ new Property(this, index, "Whiteboard text")); +/* 105 */ } else if (mode == 1) { +/* 106 */ ret = this._line; +/* 107 */ } else if (mode == 2) +/* 108 */ set((String)value); +/* 109 */ break; +/* */ default: +/* 111 */ ret = super.properties(index, offset + 1, mode, value); +/* */ } +/* 113 */ return ret; +/* */ } +/* */ +/* */ +/* 117 */ private static Object classCookie = new Object(); +/* */ +/* */ public void saveState(Saver s) throws IOException +/* */ { +/* 121 */ s.saveVersion(0, classCookie); +/* 122 */ super.saveState(s); +/* */ +/* 124 */ s.saveString(this._line); +/* */ } +/* */ +/* */ public void restoreState(Restorer r) throws IOException, TooNewException +/* */ { +/* 129 */ switch (r.restoreVersion(classCookie)) { +/* */ case 0: +/* 131 */ super.restoreState(r); +/* 132 */ this._line = r.restoreString(); +/* 133 */ break; +/* */ default: +/* 135 */ throw new TooNewException(); +/* */ } +/* */ +/* 138 */ setOwnerText(); +/* */ } +/* */ } + + +/* Location: C:\Program Files (x86)\Worlds Inc\WorldsPlayer - Win7\lib\worlds.jar!\NET\worlds\scape\Whiteboard.class + * Java compiler version: 6 (50.0) + * JD-Core Version: 0.7.1 + */
\ No newline at end of file |