summaryrefslogtreecommitdiff
path: root/NET/worlds/scape/VideoWall.java
blob: 9969c717272d5163ec74e221b5a505fa794f92b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
package NET.worlds.scape;

import NET.worlds.core.IniFile;
import NET.worlds.network.URL;
import java.io.IOException;

public class VideoWall extends Rect {
   VideoSurface _surface = null;
   Texture[] _textures;
   Material _material = null;
   String _textureURL = "http://dev.worlds.net/rr-worlds/video/fatboy.asf";
   String _defTextureURL = IniFile.override().getIniString("defaultAd", "adworlds.cmp");
   int _xSurface = 140;
   int _ySurface = 104;
   boolean _autoPlay = true;
   int _autoPlayRepeats = 1;
   int _rows = 1;
   private static Object classCookie = new Object();

   private void rebuild() {
      this.unbuild();
      int xTex = this._xSurface / 128 + 1;
      int yTex = this._ySurface / 128 + 1;
      this._surface = null;
      this._rows = yTex;
      this._material = new Material(URL.make(this._defTextureURL), xTex, yTex);
      this.setMaterial(this._material);
      this._textures = this._material.getTextures();
      this._surface = VideoManager.get(this._textureURL, yTex, this._xSurface, this._ySurface);
      if (this._autoPlay) {
         this._surface.play(1);
      }
   }

   @Override
   public void finalize() {
      this.unbuild();
      super.finalize();
   }

   @Override
   public void detach() {
      this.unbuild();
      super.detach();
   }

   private void unbuild() {
      if (this._surface != null) {
         this._surface.stop();
         VideoManager.release(this._surface);
         this._surface = null;
      }
   }

   public void changeURL(String newURL, int width, int height) {
      this._textureURL = new String(newURL);
      this._xSurface = width;
      this._ySurface = height;
      this.rebuild();
   }

   @Override
   public boolean handle(FrameEvent f) {
      this.getState();
      if (this.visible) {
         this.draw();
      }

      return false;
   }

   @Override
   public void prerender(Camera cam) {
      Point3Temp p = this.inCamSpace(cam);
      boolean v = p != null && p.z > 1.0F && p.x < p.z && -p.x < p.z;
      if (v) {
         this.visible = true;
      }
   }

   public VideoSurface getVideoSurface() {
      return this._surface;
   }

   public synchronized void draw() {
      if (this._surface != null) {
         this._surface.draw(this._material.getTextures(), this._rows);
      }
   }

   public int getState() {
      return this._surface != null ? this._surface.tick() : 0;
   }

   @Override
   public Object properties(int index, int offset, int mode, Object value) throws NoSuchPropertyException {
      Object ret = null;
      switch (index - offset) {
         case 0:
            if (mode == 0) {
               ret = StringPropertyEditor.make(new Property(this, index, "Video URL"));
            } else if (mode == 1) {
               ret = this._textureURL;
            } else if (mode == 2) {
               this._textureURL = (String)value;
               this.rebuild();
            }
            break;
         case 1:
            if (mode == 0) {
               ret = IntegerPropertyEditor.make(new Property(this, index, "Video Width (pixels)"), 0, 1024);
            } else if (mode == 1) {
               ret = new Integer(this._xSurface);
            } else if (mode == 2) {
               this._xSurface = (Integer)value;
               this.rebuild();
            }
            break;
         case 2:
            if (mode == 0) {
               ret = IntegerPropertyEditor.make(new Property(this, index, "Video Height (pixels)"), 0, 1024);
            } else if (mode == 1) {
               ret = new Integer(this._ySurface);
            } else if (mode == 2) {
               this._ySurface = (Integer)value;
               this.rebuild();
            }
            break;
         case 3:
            if (mode == 0) {
               ret = BooleanPropertyEditor.make(new Property(this, index, "Auto-play?"), "No", "Yes");
            } else if (mode == 1) {
               ret = new Boolean(this._autoPlay);
            } else if (mode == 2) {
               this._autoPlay = (Boolean)value;
               this.rebuild();
            }
            break;
         case 4:
            if (mode == 0) {
               ret = IntegerPropertyEditor.make(new Property(this, index, "Repeats for Autoplay (-1 = infinite)"), -1, 1024);
            } else if (mode == 1) {
               ret = new Integer(this._autoPlayRepeats);
            } else if (mode == 2) {
               this._autoPlayRepeats = (Integer)value;
               this.rebuild();
            }
            break;
         default:
            ret = super.properties(index, offset + 5, mode, value);
      }

      return ret;
   }

   @Override
   public void saveState(Saver s) throws IOException {
      s.saveVersion(1, classCookie);
      super.saveState(s);
      s.saveString(this._textureURL);
      s.saveInt(this._xSurface);
      s.saveInt(this._ySurface);
      s.saveBoolean(this._autoPlay);
      s.saveInt(this._autoPlayRepeats);
   }

   @Override
   public void restoreState(Restorer r) throws IOException, TooNewException {
      switch (r.restoreVersion(classCookie)) {
         case 0:
            super.restoreState(r);
            this._textureURL = r.restoreString();
            this._xSurface = r.restoreInt();
            this._ySurface = r.restoreInt();
            this._autoPlay = r.restoreBoolean();
            break;
         case 1:
            super.restoreState(r);
            this._textureURL = r.restoreString();
            this._xSurface = r.restoreInt();
            this._ySurface = r.restoreInt();
            this._autoPlay = r.restoreBoolean();
            this._autoPlayRepeats = r.restoreInt();
            break;
         default:
            throw new TooNewException();
      }

      this.rebuild();
   }
}