summaryrefslogtreecommitdiff
path: root/src/h/ST_Ppoly_t.java
blob: 6206be8efe5bba79e0221468e42a314c1ef2b5f6 (plain)
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/* ========================================================================
 * PlantUML : a free UML diagram generator
 * ========================================================================
 *
 * Project Info:  http://plantuml.com
 * 
 * If you like this project or if you find it useful, you can support us at:
 * 
 * http://plantuml.com/patreon (only 1$ per month!)
 * http://plantuml.com/paypal
 * 
 * This file is part of Smetana.
 * Smetana is a partial translation of Graphviz/Dot sources from C to Java.
 *
 * (C) Copyright 2009-2017, Arnaud Roques
 *
 * This translation is distributed under the same Licence as the original C program:
 * 
 *************************************************************************
 * Copyright (c) 2011 AT&T Intellectual Property 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors: See CVS logs. Details at http://www.graphviz.org/
 *************************************************************************
 *
 * THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
 * LICENSE ("AGREEMENT"). [Eclipse Public License - v 1.0]
 * 
 * ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES
 * RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
 * 
 * You may obtain a copy of the License at
 * 
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */
package h;

import smetana.core.HardcodedStruct;
import smetana.core.UnsupportedArrayOfPtr;
import smetana.core.UnsupportedArrayOfStruct;
import smetana.core.UnsupportedStarStruct;
import smetana.core.UnsupportedStructAndPtr;
import smetana.core.__array_of_ptr__;
import smetana.core.__array_of_struct__;
import smetana.core.__ptr__;
import smetana.core.__struct__;
import smetana.core.amiga.Area;
import smetana.core.amiga.StarArrayOfPtr;
import smetana.core.amiga.StarArrayOfStruct;
import smetana.core.amiga.StarStruct;

public class ST_Ppoly_t extends UnsupportedStructAndPtr implements HardcodedStruct {

	// public List ps1;
	public StarArrayOfPtr ps2;
	public int pn;

	public ST_Ppoly_t() {
		this(null);
	}

	public ST_Ppoly_t(StarStruct parent) {
	}

	@Override
	public __struct__ copy() {
		ST_Ppoly_t result = new ST_Ppoly_t();
		result.ps2 = this.ps2;
		result.pn = this.pn;
		return result;
	}

	class Adaptor extends UnsupportedArrayOfPtr {

		final private StarArrayOfStruct newData2;
		final private int pos;

		public Adaptor(StarArrayOfStruct newData2, int pos) {
			this.newData2 = newData2;
			this.pos = pos;
		}

		@Override
		public __array_of_ptr__ move(int delta) {
			return new Adaptor(newData2, pos + delta);
		}

		@Override
		public Area getInternal(int idx) {
			return newData2.getInternalArray().getInternal(pos + idx);
		}

		@Override
		public __ptr__ getPtr() {
			return newData2.plus(pos).getPtr();
		}

		@Override
		public __struct__ getStruct() {
			return newData2.plus(pos).getStruct();
		}

		@Override
		public int comparePointerInternal(__array_of_ptr__ other) {
			return super.comparePointerInternal(other);
		}

	}

	class Adaptor2 extends UnsupportedArrayOfStruct {

		final private int pos;

		public Adaptor2(int pos) {
			this.pos = pos;
		}

		@Override
		public __array_of_struct__ plus(int delta) {
			return new Adaptor2(pos + delta);
		}
		
		@Override
		public __struct__ getStruct() {
			return ps2.plus(pos).getStruct();
		}

	}

	@Override
	public __ptr__ setPtr(String fieldName, __ptr__ newData) {
		if (fieldName.equals("ps")) {
			if (newData instanceof StarArrayOfStruct) {
				StarArrayOfStruct newData2 = (StarArrayOfStruct) newData;
				System.err.println("newData2B=" + newData2);
				this.ps2 = new StarArrayOfPtr(new Adaptor(newData2, 0));
				return ps2;
			}
			this.ps2 = (StarArrayOfPtr) newData;
			return ps2;
		}
		return super.setPtr(fieldName, newData);
	}

	@Override
	public __ptr__ getPtr(String fieldName) {
		if (fieldName.equals("ps")) {
			return ps2;
		}
		return super.getPtr(fieldName);
	}

	@Override
	public __array_of_struct__ getArrayOfStruct(String fieldName) {
		if (fieldName.equals("ps")) {
			return new Adaptor2(0);
			// return ps2.getArrayOfStruct("ps");
		}
		return super.getArrayOfStruct(fieldName);
	}

	@Override
	public __array_of_ptr__ getArrayOfPtr(String fieldName) {
		if (fieldName.equals("ps")) {
			return ps2.getInternalArray();
		}
		return super.getArrayOfPtr(fieldName);
	}

	@Override
	public void memcopyFrom(Area source) {
		ST_Ppoly_t source2 = (ST_Ppoly_t) source;
		this.ps2 = source2.ps2;
		this.pn = source2.pn;
	}

	@Override
	public void setInt(String fieldName, int data) {
		if (fieldName.equals("pn")) {
			this.pn = data;
			return;
		}
		super.setInt(fieldName, data);
	}

	@Override
	public int getInt(String fieldName) {
		if (fieldName.equals("pn")) {
			return pn;
		}
		return super.getInt(fieldName);
	}

	public class Amp extends UnsupportedStarStruct {

		@Override
		public int getInt(String fieldName) {
			if (fieldName.equals("pn")) {
				return pn;
			}
			return super.getInt(fieldName);
		}

		@Override
		public void setInt(String fieldName, int data) {
			if (fieldName.equals("pn")) {
				pn = data;
				return;
			}
			super.setInt(fieldName, data);
		}

		@Override
		public __ptr__ getPtr(String fieldName) {
			if (fieldName.equals("ps")) {
				return ps2;
			}
			return super.getPtr(fieldName);
		}

		@Override
		public __ptr__ setPtr(String fieldName, __ptr__ newData) {
			if (fieldName.equals("ps")) {
				ps2 = (StarArrayOfPtr) newData;
				return newData;
			}
			return super.setPtr(fieldName, newData);
		}
	}

	@Override
	public StarStruct amp() {
		return new Amp();
	}

	// public static List<String> DEFINITION = Arrays.asList(
	// "typedef struct Ppoly_t",
	// "{",
	// "Ppoint_t *ps",
	// "int pn",
	// "}",
	// "Ppoly_t");
}

// typedef struct Ppoly_t {
// Ppoint_t *ps;
// int pn;
// } Ppoly_t;