summaryrefslogtreecommitdiff
path: root/NET/worlds/scape/Polygon.java
blob: 97625fe18bb70a9a879c44c8d2b864ba148b5682 (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
/*     */ package NET.worlds.scape;
/*     */ 
/*     */ import java.io.IOException;
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ public class Polygon
/*     */   extends Surface
/*     */ {
/*     */   protected float[] vertices;
/*     */   
/*     */   public Polygon(int numVertices, Material material)
/*     */   {
/*  46 */     this(new float[5 * numVertices], material);
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public Polygon(float[] vertices, Material material)
/*     */   {
/*  58 */     super(material);
/*  59 */     assert (vertices.length % 5 == 0);
/*  60 */     this.vertices = vertices;
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public Polygon() {}
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public void setVertex(int i, float x, float y, float z, float u, float v)
/*     */   {
/*  81 */     i *= 5;
/*  82 */     this.vertices[i] = x;
/*  83 */     this.vertices[(i + 1)] = y;
/*  84 */     this.vertices[(i + 2)] = z;
/*  85 */     this.vertices[(i + 3)] = u;
/*  86 */     this.vertices[(i + 4)] = v;
/*     */     
/*  88 */     nativeSetVertex(i, x, y, z, u, v);
/*     */   }
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   public native void nativeSetVertex(int paramInt, float paramFloat1, float paramFloat2, float paramFloat3, float paramFloat4, float paramFloat5);
/*     */   
/*     */ 
/*     */ 
/*     */ 
/*     */ 
/*     */   protected void addRwChildren(WObject parent)
/*     */   {
/* 103 */     addNewRwChild(parent);
/*     */     
/* 105 */     for (int i = 0; i < this.vertices.length; i += 5) {
/* 106 */       addVertex(this.vertices[i], this.vertices[(i + 1)], this.vertices[(i + 2)], 
/* 107 */         this.vertices[(i + 3)], this.vertices[(i + 4)]);
/*     */     }
/* 109 */     doneWithEditing();
/*     */   }
/*     */   
/* 112 */   private static Object classCookie = new Object();
/*     */   
/*     */   public void saveState(Saver s) throws IOException
/*     */   {
/* 116 */     s.saveVersion(0, classCookie);
/* 117 */     super.saveState(s);
/* 118 */     s.saveInt(this.vertices.length);
/* 119 */     for (int i = 0; i < this.vertices.length; i++) {
/* 120 */       s.saveFloat(this.vertices[i]);
/*     */     }
/*     */   }
/*     */   
/*     */   public void restoreState(Restorer r) throws IOException, TooNewException {
/* 125 */     switch (r.restoreVersion(classCookie)) {
/*     */     case 0: 
/* 127 */       super.restoreState(r);
/* 128 */       int length = r.restoreInt();
/* 129 */       this.vertices = new float[length];
/* 130 */       for (int i = 0; i < length; i++)
/* 131 */         this.vertices[i] = r.restoreFloat();
/* 132 */       break;
/*     */     default: 
/* 134 */       throw new TooNewException();
/*     */     }
/*     */   }
/*     */ }


/* Location:              C:\Program Files (x86)\Worlds Inc\WorldsPlayer - Win7\lib\worlds.jar!\NET\worlds\scape\Polygon.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */