propane 3.4.0-java → 3.7.0.pre-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.mvn/extensions.xml +1 -2
- data/.mvn/wrapper/MavenWrapperDownloader.java +2 -2
- data/.mvn/wrapper/maven-wrapper.properties +2 -2
- data/.travis.yml +2 -2
- data/CHANGELOG.md +12 -0
- data/Gemfile +2 -0
- data/README.md +17 -8
- data/Rakefile +10 -11
- data/bin/propane +3 -1
- data/lib/propane.rb +6 -4
- data/lib/propane/app.rb +20 -10
- data/lib/propane/creators/sketch_class.rb +7 -1
- data/lib/propane/creators/sketch_factory.rb +4 -2
- data/lib/propane/creators/sketch_writer.rb +1 -0
- data/lib/propane/helper_methods.rb +23 -24
- data/lib/propane/helpers/numeric.rb +2 -0
- data/lib/propane/helpers/version_error.rb +1 -0
- data/lib/propane/library.rb +5 -1
- data/lib/propane/library_loader.rb +2 -0
- data/lib/propane/native_folder.rb +10 -9
- data/lib/propane/native_loader.rb +3 -0
- data/lib/propane/runner.rb +14 -6
- data/lib/propane/version.rb +2 -1
- data/library/boids/boids.rb +21 -11
- data/library/color_group/color_group.rb +28 -0
- data/library/control_panel/control_panel.rb +8 -5
- data/library/dxf/dxf.rb +6 -0
- data/library/file_chooser/chooser.rb +10 -9
- data/library/file_chooser/file_chooser.rb +10 -9
- data/library/library_proxy/library_proxy.rb +2 -0
- data/library/net/net.rb +7 -0
- data/library/simplex_noise/simplex_noise.rb +2 -0
- data/library/slider/slider.rb +23 -22
- data/library/vector_utils/vector_utils.rb +4 -0
- data/library/video_event/video_event.rb +4 -1
- data/pom.rb +37 -36
- data/pom.xml +7 -7
- data/propane.gemspec +16 -12
- data/src/main/java/monkstone/ColorUtil.java +13 -1
- data/src/main/java/monkstone/MathToolModule.java +253 -203
- data/src/main/java/monkstone/PropaneLibrary.java +2 -2
- data/src/main/java/monkstone/fastmath/Deglut.java +1 -1
- data/src/main/java/monkstone/filechooser/Chooser.java +2 -1
- data/src/main/java/monkstone/noise/SimplexNoise.java +2 -2
- data/src/main/java/monkstone/slider/CustomHorizontalSlider.java +1 -1
- data/src/main/java/monkstone/slider/CustomVerticalSlider.java +1 -1
- data/src/main/java/monkstone/slider/SimpleHorizontalSlider.java +1 -1
- data/src/main/java/monkstone/slider/SimpleVerticalSlider.java +1 -1
- data/src/main/java/monkstone/slider/SliderBar.java +1 -1
- data/src/main/java/monkstone/slider/SliderGroup.java +1 -1
- data/src/main/java/monkstone/slider/WheelHandler.java +7 -6
- data/src/main/java/monkstone/vecmath/package-info.java +1 -1
- data/src/main/java/monkstone/vecmath/vec2/Vec2.java +1 -1
- data/src/main/java/monkstone/vecmath/vec3/Vec3.java +3 -3
- data/src/main/java/monkstone/videoevent/CaptureEvent.java +27 -0
- data/src/main/java/monkstone/videoevent/{VideoInterface.java → MovieEvent.java} +11 -27
- data/src/main/java/monkstone/videoevent/package-info.java +1 -1
- data/src/main/java/processing/awt/PGraphicsJava2D.java +781 -285
- data/src/main/java/processing/awt/PImageAWT.java +377 -0
- data/src/main/java/processing/awt/PShapeJava2D.java +56 -52
- data/src/main/java/processing/awt/PSurfaceAWT.java +309 -209
- data/src/main/java/processing/awt/ShimAWT.java +581 -0
- data/src/main/java/processing/core/PApplet.java +4510 -4503
- data/src/main/java/processing/core/PConstants.java +477 -447
- data/src/main/java/processing/core/PFont.java +914 -880
- data/src/main/java/processing/core/PGraphics.java +193 -177
- data/src/main/java/processing/core/PImage.java +611 -309
- data/src/main/java/processing/core/PMatrix.java +172 -159
- data/src/main/java/processing/core/PMatrix2D.java +478 -415
- data/src/main/java/processing/core/PMatrix3D.java +762 -735
- data/src/main/java/processing/core/PShape.java +2888 -2652
- data/src/main/java/processing/core/PShapeOBJ.java +97 -92
- data/src/main/java/processing/core/PShapeSVG.java +1705 -1490
- data/src/main/java/processing/core/PStyle.java +40 -37
- data/src/main/java/processing/core/PSurface.java +139 -97
- data/src/main/java/processing/core/PSurfaceNone.java +296 -218
- data/src/main/java/processing/core/PVector.java +997 -965
- data/src/main/java/processing/core/ThinkDifferent.java +15 -13
- data/src/main/java/processing/data/DoubleDict.java +756 -710
- data/src/main/java/processing/data/DoubleList.java +749 -696
- data/src/main/java/processing/data/FloatDict.java +748 -702
- data/src/main/java/processing/data/FloatList.java +751 -697
- data/src/main/java/processing/data/IntDict.java +720 -673
- data/src/main/java/processing/data/IntList.java +699 -633
- data/src/main/java/processing/data/JSONArray.java +931 -873
- data/src/main/java/processing/data/JSONObject.java +1262 -1165
- data/src/main/java/processing/data/JSONTokener.java +351 -341
- data/src/main/java/processing/data/LongDict.java +710 -663
- data/src/main/java/processing/data/LongList.java +701 -635
- data/src/main/java/processing/data/Sort.java +37 -41
- data/src/main/java/processing/data/StringDict.java +525 -486
- data/src/main/java/processing/data/StringList.java +626 -580
- data/src/main/java/processing/data/Table.java +3690 -3510
- data/src/main/java/processing/data/TableRow.java +182 -183
- data/src/main/java/processing/data/XML.java +957 -883
- data/src/main/java/processing/dxf/RawDXF.java +404 -0
- data/src/main/java/processing/event/Event.java +87 -67
- data/src/main/java/processing/event/KeyEvent.java +48 -41
- data/src/main/java/processing/event/MouseEvent.java +88 -113
- data/src/main/java/processing/event/TouchEvent.java +10 -6
- data/src/main/java/processing/javafx/PGraphicsFX2D.java +20 -345
- data/src/main/java/processing/javafx/PSurfaceFX.java +149 -121
- data/src/main/java/processing/net/Client.java +744 -0
- data/src/main/java/processing/net/Server.java +388 -0
- data/src/main/java/processing/opengl/FontTexture.java +289 -270
- data/src/main/java/processing/opengl/FrameBuffer.java +386 -364
- data/src/main/java/processing/opengl/LinePath.java +547 -500
- data/src/main/java/processing/opengl/LineStroker.java +588 -581
- data/src/main/java/processing/opengl/PGL.java +3047 -2914
- data/src/main/java/processing/opengl/PGraphics2D.java +408 -315
- data/src/main/java/processing/opengl/PGraphics3D.java +107 -72
- data/src/main/java/processing/opengl/PGraphicsOpenGL.java +12378 -12075
- data/src/main/java/processing/opengl/PJOGL.java +1753 -1670
- data/src/main/java/processing/opengl/PShader.java +1266 -1257
- data/src/main/java/processing/opengl/PShapeOpenGL.java +4678 -4580
- data/src/main/java/processing/opengl/PSurfaceJOGL.java +1114 -1027
- data/src/main/java/processing/opengl/Texture.java +1492 -1401
- data/src/main/java/processing/opengl/VertexBuffer.java +57 -55
- data/test/create_test.rb +21 -20
- data/test/deglut_spec_test.rb +4 -2
- data/test/helper_methods_test.rb +49 -20
- data/test/math_tool_test.rb +39 -32
- data/test/native_folder.rb +47 -0
- data/test/respond_to_test.rb +3 -2
- data/test/sketches/key_event.rb +2 -2
- data/test/sketches/library/my_library/my_library.rb +3 -0
- data/test/test_helper.rb +2 -0
- data/test/vecmath_spec_test.rb +35 -22
- data/vendors/Rakefile +33 -62
- metadata +56 -48
- data/src/main/java/processing/core/util/image/ImageLoadFacade.java +0 -161
- data/src/main/java/processing/core/util/image/ImageSaveFacade.java +0 -169
- data/src/main/java/processing/core/util/image/constants/TifConstants.java +0 -45
- data/src/main/java/processing/core/util/image/load/AwtImageLoadStrategy.java +0 -80
- data/src/main/java/processing/core/util/image/load/Base64StringImageLoadStrategy.java +0 -73
- data/src/main/java/processing/core/util/image/load/FallbackImageLoadStrategy.java +0 -70
- data/src/main/java/processing/core/util/image/load/ImageIoImageLoadStrategy.java +0 -132
- data/src/main/java/processing/core/util/image/load/ImageLoadStrategy.java +0 -48
- data/src/main/java/processing/core/util/image/load/ImageLoadUtil.java +0 -45
- data/src/main/java/processing/core/util/image/load/TgaImageLoadStrategy.java +0 -255
- data/src/main/java/processing/core/util/image/load/TiffImageLoadStrategy.java +0 -98
- data/src/main/java/processing/core/util/image/save/ImageSaveStrategy.java +0 -49
- data/src/main/java/processing/core/util/image/save/ImageSaveUtil.java +0 -48
- data/src/main/java/processing/core/util/image/save/ImageWriterImageSaveStrategy.java +0 -179
- data/src/main/java/processing/core/util/image/save/SaveImageException.java +0 -41
- data/src/main/java/processing/core/util/image/save/TgaImageSaveStrategy.java +0 -198
- data/src/main/java/processing/core/util/image/save/TiffImageSaveStrategy.java +0 -91
- data/src/main/java/processing/core/util/image/save/TiffNakedFilenameImageSaveStrategy.java +0 -57
- data/src/main/java/processing/core/util/io/InputFactory.java +0 -285
- data/src/main/java/processing/core/util/io/PathUtil.java +0 -109
- data/src/main/java/processing/opengl/shaders/LightVert-brcm.glsl +0 -154
- data/src/main/java/processing/opengl/shaders/LightVert-vc4.glsl +0 -154
- data/src/main/java/processing/opengl/shaders/TexLightVert-brcm.glsl +0 -160
- data/src/main/java/processing/opengl/shaders/TexLightVert-vc4.glsl +0 -160
@@ -8,277 +8,298 @@ import java.util.Random;
|
|
8
8
|
|
9
9
|
import processing.core.PApplet;
|
10
10
|
|
11
|
+
|
11
12
|
// splice, slice, subset, concat, reverse
|
13
|
+
|
12
14
|
// trim, join for String versions
|
15
|
+
|
16
|
+
|
13
17
|
/**
|
14
18
|
* Helper class for a list of ints. Lists are designed to have some of the
|
15
19
|
* features of ArrayLists, but to maintain the simplicity and efficiency of
|
16
20
|
* working with arrays.
|
17
21
|
*
|
18
|
-
* Functions like sort() and shuffle() always act on the list itself. To get
|
19
|
-
* sorted copy, use list.copy().sort().
|
22
|
+
* Functions like sort() and shuffle() always act on the list itself. To get
|
23
|
+
* a sorted copy, use list.copy().sort().
|
20
24
|
*
|
21
25
|
* @webref data:composite
|
22
26
|
* @see FloatList
|
23
27
|
* @see StringList
|
24
28
|
*/
|
25
29
|
public class IntList implements Iterable<Integer> {
|
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
|
-
* Construct an IntList from a random pile of objects. Un-parseable or null
|
73
|
-
* values will be set to zero.
|
74
|
-
*/
|
75
|
-
public IntList(Object... items) {
|
76
|
-
final int missingValue = 0; // nuts, can't be last/final/second arg
|
77
|
-
|
78
|
-
count = items.length;
|
79
|
-
data = new int[count];
|
80
|
-
int index = 0;
|
81
|
-
for (Object o : items) {
|
82
|
-
int value = missingValue;
|
83
|
-
if (o != null) {
|
84
|
-
if (o instanceof Number) {
|
85
|
-
value = ((Number) o).intValue();
|
86
|
-
} else {
|
87
|
-
value = PApplet.parseInt(o.toString().trim(), missingValue);
|
88
|
-
}
|
89
|
-
}
|
90
|
-
data[index++] = value;
|
91
|
-
}
|
92
|
-
}
|
93
|
-
|
94
|
-
static public IntList fromRange(int stop) {
|
95
|
-
return fromRange(0, stop);
|
30
|
+
protected int count;
|
31
|
+
protected int[] data;
|
32
|
+
|
33
|
+
|
34
|
+
public IntList() {
|
35
|
+
data = new int[10];
|
36
|
+
}
|
37
|
+
|
38
|
+
|
39
|
+
/**
|
40
|
+
* @nowebref
|
41
|
+
*/
|
42
|
+
public IntList(int length) {
|
43
|
+
data = new int[length];
|
44
|
+
}
|
45
|
+
|
46
|
+
|
47
|
+
/**
|
48
|
+
* @nowebref
|
49
|
+
*/
|
50
|
+
public IntList(int[] source) {
|
51
|
+
count = source.length;
|
52
|
+
data = new int[count];
|
53
|
+
System.arraycopy(source, 0, data, 0, count);
|
54
|
+
}
|
55
|
+
|
56
|
+
|
57
|
+
/**
|
58
|
+
* Construct an IntList from an iterable pile of objects.
|
59
|
+
* For instance, a float array, an array of strings, who knows).
|
60
|
+
* Un-parseable or null values will be set to 0.
|
61
|
+
* @nowebref
|
62
|
+
*/
|
63
|
+
public IntList(Iterable<Object> iter) {
|
64
|
+
this(10);
|
65
|
+
for (Object o : iter) {
|
66
|
+
if (o == null) {
|
67
|
+
append(0); // missing value default
|
68
|
+
} else if (o instanceof Number) {
|
69
|
+
append(((Number) o).intValue());
|
70
|
+
} else {
|
71
|
+
append(PApplet.parseInt(o.toString().trim()));
|
72
|
+
}
|
96
73
|
}
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
if (
|
115
|
-
|
74
|
+
crop();
|
75
|
+
}
|
76
|
+
|
77
|
+
|
78
|
+
/**
|
79
|
+
* Construct an IntList from a random pile of objects.
|
80
|
+
* Un-parseable or null values will be set to zero.
|
81
|
+
*/
|
82
|
+
public IntList(Object... items) {
|
83
|
+
final int missingValue = 0; // nuts, can't be last/final/second arg
|
84
|
+
|
85
|
+
count = items.length;
|
86
|
+
data = new int[count];
|
87
|
+
int index = 0;
|
88
|
+
for (Object o : items) {
|
89
|
+
int value = missingValue;
|
90
|
+
if (o != null) {
|
91
|
+
if (o instanceof Number) {
|
92
|
+
value = ((Number) o).intValue();
|
93
|
+
} else {
|
94
|
+
value = PApplet.parseInt(o.toString().trim(), missingValue);
|
116
95
|
}
|
96
|
+
}
|
97
|
+
data[index++] = value;
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
|
102
|
+
static public IntList fromRange(int stop) {
|
103
|
+
return fromRange(0, stop);
|
104
|
+
}
|
105
|
+
|
106
|
+
|
107
|
+
static public IntList fromRange(int start, int stop) {
|
108
|
+
int count = stop - start;
|
109
|
+
IntList newbie = new IntList(count);
|
110
|
+
for (int i = 0; i < count; i++) {
|
111
|
+
newbie.set(i, start+i);
|
112
|
+
}
|
113
|
+
return newbie;
|
114
|
+
}
|
115
|
+
|
116
|
+
|
117
|
+
/**
|
118
|
+
* Improve efficiency by removing allocated but unused entries from the
|
119
|
+
* internal array used to store the data. Set to private, though it could
|
120
|
+
* be useful to have this public if lists are frequently making drastic
|
121
|
+
* size changes (from very large to very small).
|
122
|
+
*/
|
123
|
+
private void crop() {
|
124
|
+
if (count != data.length) {
|
125
|
+
data = PApplet.subset(data, 0, count);
|
126
|
+
}
|
127
|
+
}
|
128
|
+
|
129
|
+
|
130
|
+
/**
|
131
|
+
* Get the length of the list.
|
132
|
+
*
|
133
|
+
* @webref intlist:method
|
134
|
+
* @brief Get the length of the list
|
135
|
+
*/
|
136
|
+
public int size() {
|
137
|
+
return count;
|
138
|
+
}
|
139
|
+
|
140
|
+
|
141
|
+
public void resize(int length) {
|
142
|
+
if (length > data.length) {
|
143
|
+
int[] temp = new int[length];
|
144
|
+
System.arraycopy(data, 0, temp, 0, count);
|
145
|
+
data = temp;
|
146
|
+
|
147
|
+
} else if (length > count) {
|
148
|
+
Arrays.fill(data, count, length, 0);
|
149
|
+
}
|
150
|
+
count = length;
|
151
|
+
}
|
152
|
+
|
153
|
+
|
154
|
+
/**
|
155
|
+
* Remove all entries from the list.
|
156
|
+
*
|
157
|
+
* @webref intlist:method
|
158
|
+
* @brief Remove all entries from the list
|
159
|
+
*/
|
160
|
+
public void clear() {
|
161
|
+
count = 0;
|
162
|
+
}
|
163
|
+
|
164
|
+
|
165
|
+
/**
|
166
|
+
* Get an entry at a particular index.
|
167
|
+
*
|
168
|
+
* @webref intlist:method
|
169
|
+
* @brief Get an entry at a particular index
|
170
|
+
*/
|
171
|
+
public int get(int index) {
|
172
|
+
if (index >= this.count) {
|
173
|
+
throw new ArrayIndexOutOfBoundsException(index);
|
174
|
+
}
|
175
|
+
return data[index];
|
176
|
+
}
|
177
|
+
|
178
|
+
|
179
|
+
/**
|
180
|
+
* Set the entry at a particular index. If the index is past the length of
|
181
|
+
* the list, it'll expand the list to accommodate, and fill the intermediate
|
182
|
+
* entries with 0s.
|
183
|
+
*
|
184
|
+
* @webref intlist:method
|
185
|
+
* @brief Set the entry at a particular index
|
186
|
+
*/
|
187
|
+
public void set(int index, int what) {
|
188
|
+
if (index >= count) {
|
189
|
+
data = PApplet.expand(data, index+1);
|
190
|
+
for (int i = count; i < index; i++) {
|
191
|
+
data[i] = 0;
|
192
|
+
}
|
193
|
+
count = index+1;
|
117
194
|
}
|
195
|
+
data[index] = what;
|
196
|
+
}
|
118
197
|
|
119
|
-
/**
|
120
|
-
* Get the length of the list.
|
121
|
-
*
|
122
|
-
* @webref intlist:method
|
123
|
-
* @brief Get the length of the list
|
124
|
-
*/
|
125
|
-
public int size() {
|
126
|
-
return count;
|
127
|
-
}
|
128
198
|
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
data = temp;
|
199
|
+
/** Just an alias for append(), but matches pop() */
|
200
|
+
public void push(int value) {
|
201
|
+
append(value);
|
202
|
+
}
|
134
203
|
|
135
|
-
} else if (length > count) {
|
136
|
-
Arrays.fill(data, count, length, 0);
|
137
|
-
}
|
138
|
-
count = length;
|
139
|
-
}
|
140
|
-
|
141
|
-
/**
|
142
|
-
* Remove all entries from the list.
|
143
|
-
*
|
144
|
-
* @webref intlist:method
|
145
|
-
* @brief Remove all entries from the list
|
146
|
-
*/
|
147
|
-
public void clear() {
|
148
|
-
count = 0;
|
149
|
-
}
|
150
|
-
|
151
|
-
/**
|
152
|
-
* Get an entry at a particular index.
|
153
|
-
*
|
154
|
-
* @webref intlist:method
|
155
|
-
* @brief Get an entry at a particular index
|
156
|
-
*/
|
157
|
-
public int get(int index) {
|
158
|
-
if (index >= this.count) {
|
159
|
-
throw new ArrayIndexOutOfBoundsException(index);
|
160
|
-
}
|
161
|
-
return data[index];
|
162
|
-
}
|
163
|
-
|
164
|
-
/**
|
165
|
-
* Set the entry at a particular index. If the index is past the length of
|
166
|
-
* the list, it'll expand the list to accommodate, and fill the intermediate
|
167
|
-
* entries with 0s.
|
168
|
-
*
|
169
|
-
* @webref intlist:method
|
170
|
-
* @brief Set the entry at a particular index
|
171
|
-
*/
|
172
|
-
public void set(int index, int what) {
|
173
|
-
if (index >= count) {
|
174
|
-
data = PApplet.expand(data, index + 1);
|
175
|
-
for (int i = count; i < index; i++) {
|
176
|
-
data[i] = 0;
|
177
|
-
}
|
178
|
-
count = index + 1;
|
179
|
-
}
|
180
|
-
data[index] = what;
|
181
|
-
}
|
182
204
|
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
public void push(int value) {
|
187
|
-
append(value);
|
205
|
+
public int pop() {
|
206
|
+
if (count == 0) {
|
207
|
+
throw new RuntimeException("Can't call pop() on an empty list");
|
188
208
|
}
|
209
|
+
int value = get(count-1);
|
210
|
+
count--;
|
211
|
+
return value;
|
212
|
+
}
|
189
213
|
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
* @webref intlist:method
|
203
|
-
* @brief Remove an element from the specified index
|
204
|
-
*/
|
205
|
-
public int remove(int index) {
|
206
|
-
if (index < 0 || index >= count) {
|
207
|
-
throw new ArrayIndexOutOfBoundsException(index);
|
208
|
-
}
|
209
|
-
int entry = data[index];
|
214
|
+
|
215
|
+
/**
|
216
|
+
* Remove an element from the specified index
|
217
|
+
*
|
218
|
+
* @webref intlist:method
|
219
|
+
* @brief Remove an element from the specified index
|
220
|
+
*/
|
221
|
+
public int remove(int index) {
|
222
|
+
if (index < 0 || index >= count) {
|
223
|
+
throw new ArrayIndexOutOfBoundsException(index);
|
224
|
+
}
|
225
|
+
int entry = data[index];
|
210
226
|
// int[] outgoing = new int[count - 1];
|
211
227
|
// System.arraycopy(data, 0, outgoing, 0, index);
|
212
228
|
// count--;
|
213
229
|
// System.arraycopy(data, index + 1, outgoing, 0, count - index);
|
214
230
|
// data = outgoing;
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
231
|
+
// For most cases, this actually appears to be faster
|
232
|
+
// than arraycopy() on an array copying into itself.
|
233
|
+
for (int i = index; i < count-1; i++) {
|
234
|
+
data[i] = data[i+1];
|
235
|
+
}
|
236
|
+
count--;
|
237
|
+
return entry;
|
238
|
+
}
|
239
|
+
|
240
|
+
|
241
|
+
// Remove the first instance of a particular value,
|
242
|
+
// and return the index at which it was found.
|
243
|
+
public int removeValue(int value) {
|
244
|
+
int index = index(value);
|
245
|
+
if (index != -1) {
|
246
|
+
remove(index);
|
247
|
+
return index;
|
248
|
+
}
|
249
|
+
return -1;
|
250
|
+
}
|
251
|
+
|
252
|
+
|
253
|
+
// Remove all instances of a particular value,
|
254
|
+
// and return the number of values found and removed
|
255
|
+
public int removeValues(int value) {
|
256
|
+
int ii = 0;
|
257
|
+
for (int i = 0; i < count; i++) {
|
258
|
+
if (data[i] != value) {
|
259
|
+
data[ii++] = data[i];
|
260
|
+
}
|
222
261
|
}
|
262
|
+
int removed = count - ii;
|
263
|
+
count = ii;
|
264
|
+
return removed;
|
265
|
+
}
|
223
266
|
|
224
|
-
// Remove the first instance of a particular value,
|
225
|
-
// and return the index at which it was found.
|
226
|
-
public int removeValue(int value) {
|
227
|
-
int index = index(value);
|
228
|
-
if (index != -1) {
|
229
|
-
remove(index);
|
230
|
-
return index;
|
231
|
-
}
|
232
|
-
return -1;
|
233
|
-
}
|
234
267
|
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
int removed = count - ii;
|
245
|
-
count = ii;
|
246
|
-
return removed;
|
247
|
-
}
|
248
|
-
|
249
|
-
/**
|
250
|
-
* Add a new entry to the list.
|
251
|
-
*
|
252
|
-
* @webref intlist:method
|
253
|
-
* @brief Add a new entry to the list
|
254
|
-
*/
|
255
|
-
public void append(int value) {
|
256
|
-
if (count == data.length) {
|
257
|
-
data = PApplet.expand(data);
|
258
|
-
}
|
259
|
-
data[count++] = value;
|
268
|
+
/**
|
269
|
+
* Add a new entry to the list.
|
270
|
+
*
|
271
|
+
* @webref intlist:method
|
272
|
+
* @brief Add a new entry to the list
|
273
|
+
*/
|
274
|
+
public void append(int value) {
|
275
|
+
if (count == data.length) {
|
276
|
+
data = PApplet.expand(data);
|
260
277
|
}
|
278
|
+
data[count++] = value;
|
279
|
+
}
|
261
280
|
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
281
|
+
|
282
|
+
public void append(int[] values) {
|
283
|
+
for (int v : values) {
|
284
|
+
append(v);
|
266
285
|
}
|
286
|
+
}
|
267
287
|
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
288
|
+
|
289
|
+
public void append(IntList list) {
|
290
|
+
for (int v : list.values()) { // will concat the list...
|
291
|
+
append(v);
|
272
292
|
}
|
293
|
+
}
|
273
294
|
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
append(value);
|
280
|
-
}
|
295
|
+
|
296
|
+
/** Add this value, but only if it's not already in the list. */
|
297
|
+
public void appendUnique(int value) {
|
298
|
+
if (!hasValue(value)) {
|
299
|
+
append(value);
|
281
300
|
}
|
301
|
+
}
|
302
|
+
|
282
303
|
|
283
304
|
// public void insert(int index, int value) {
|
284
305
|
// if (index+1 > count) {
|
@@ -308,44 +329,50 @@ public class IntList implements Iterable<Integer> {
|
|
308
329
|
// count++;
|
309
330
|
// }
|
310
331
|
// }
|
311
|
-
public void insert(int index, int value) {
|
312
|
-
insert(index, new int[]{value});
|
313
|
-
}
|
314
332
|
|
315
|
-
// same as splice
|
316
|
-
public void insert(int index, int[] values) {
|
317
|
-
if (index < 0) {
|
318
|
-
throw new IllegalArgumentException("insert() index cannot be negative: it was " + index);
|
319
|
-
}
|
320
|
-
if (index >= data.length) {
|
321
|
-
throw new IllegalArgumentException("insert() index " + index + " is past the end of this list");
|
322
|
-
}
|
323
333
|
|
324
|
-
|
334
|
+
public void insert(int index, int value) {
|
335
|
+
insert(index, new int[] { value });
|
336
|
+
}
|
337
|
+
|
325
338
|
|
326
|
-
|
327
|
-
|
339
|
+
// same as splice
|
340
|
+
public void insert(int index, int[] values) {
|
341
|
+
if (index < 0) {
|
342
|
+
throw new IllegalArgumentException("insert() index cannot be negative: it was " + index);
|
343
|
+
}
|
344
|
+
if (index >= data.length) {
|
345
|
+
throw new IllegalArgumentException("insert() index " + index + " is past the end of this list");
|
346
|
+
}
|
347
|
+
|
348
|
+
int[] temp = new int[count + values.length];
|
328
349
|
|
329
|
-
|
330
|
-
|
350
|
+
// Copy the old values, but not more than already exist
|
351
|
+
System.arraycopy(data, 0, temp, 0, Math.min(count, index));
|
352
|
+
|
353
|
+
// Copy the new values into the proper place
|
354
|
+
System.arraycopy(values, 0, temp, index, values.length);
|
331
355
|
|
332
356
|
// if (index < count) {
|
333
|
-
|
334
|
-
|
335
|
-
|
357
|
+
// The index was inside count, so it's a true splice/insert
|
358
|
+
System.arraycopy(data, index, temp, index+values.length, count - index);
|
359
|
+
count = count + values.length;
|
336
360
|
// } else {
|
337
361
|
// // The index was past 'count', so the new count is weirder
|
338
362
|
// count = index + values.length;
|
339
363
|
// }
|
340
|
-
|
341
|
-
|
364
|
+
data = temp;
|
365
|
+
}
|
366
|
+
|
367
|
+
|
368
|
+
public void insert(int index, IntList list) {
|
369
|
+
insert(index, list.values());
|
370
|
+
}
|
342
371
|
|
343
|
-
public void insert(int index, IntList list) {
|
344
|
-
insert(index, list.values());
|
345
|
-
}
|
346
372
|
|
347
373
|
// below are aborted attempts at more optimized versions of the code
|
348
374
|
// that are harder to read and debug...
|
375
|
+
|
349
376
|
// if (index + values.length >= count) {
|
350
377
|
// // We're past the current 'count', check to see if we're still allocated
|
351
378
|
// // index 9, data.length = 10, values.length = 1
|
@@ -384,11 +411,11 @@ public class IntList implements Iterable<Integer> {
|
|
384
411
|
// data[index] = value;
|
385
412
|
// count++;
|
386
413
|
// }
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
414
|
+
|
415
|
+
|
416
|
+
/** Return the first index of a particular value. */
|
417
|
+
public int index(int what) {
|
418
|
+
/*
|
392
419
|
if (indexCache != null) {
|
393
420
|
try {
|
394
421
|
return indexCache.get(what);
|
@@ -396,233 +423,245 @@ public class IntList implements Iterable<Integer> {
|
|
396
423
|
return -1;
|
397
424
|
}
|
398
425
|
}
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
}
|
405
|
-
return -1;
|
426
|
+
*/
|
427
|
+
for (int i = 0; i < count; i++) {
|
428
|
+
if (data[i] == what) {
|
429
|
+
return i;
|
430
|
+
}
|
406
431
|
}
|
432
|
+
return -1;
|
433
|
+
}
|
407
434
|
|
408
|
-
|
409
|
-
|
435
|
+
|
436
|
+
// !!! TODO this is not yet correct, because it's not being reset when
|
437
|
+
// the rest of the entries are changed
|
410
438
|
// protected void cacheIndices() {
|
411
439
|
// indexCache = new HashMap<Integer, Integer>();
|
412
440
|
// for (int i = 0; i < count; i++) {
|
413
441
|
// indexCache.put(data[i], i);
|
414
442
|
// }
|
415
443
|
// }
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
444
|
+
|
445
|
+
/**
|
446
|
+
* @webref intlist:method
|
447
|
+
* @brief Check if a number is a part of the list
|
448
|
+
*/
|
449
|
+
public boolean hasValue(int value) {
|
421
450
|
// if (indexCache == null) {
|
422
451
|
// cacheIndices();
|
423
452
|
// }
|
424
453
|
// return index(what) != -1;
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
}
|
430
|
-
return false;
|
454
|
+
for (int i = 0; i < count; i++) {
|
455
|
+
if (data[i] == value) {
|
456
|
+
return true;
|
457
|
+
}
|
431
458
|
}
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
459
|
+
return false;
|
460
|
+
}
|
461
|
+
|
462
|
+
/**
|
463
|
+
* @webref intlist:method
|
464
|
+
* @brief Add one to a value
|
465
|
+
*/
|
466
|
+
public void increment(int index) {
|
467
|
+
if (count <= index) {
|
468
|
+
resize(index + 1);
|
469
|
+
}
|
470
|
+
data[index]++;
|
471
|
+
}
|
472
|
+
|
473
|
+
|
474
|
+
private void boundsProblem(int index, String method) {
|
475
|
+
final String msg = String.format("The list size is %d. " +
|
476
|
+
"You cannot %s() to element %d.", count, method, index);
|
477
|
+
throw new ArrayIndexOutOfBoundsException(msg);
|
478
|
+
}
|
479
|
+
|
480
|
+
|
481
|
+
/**
|
482
|
+
* @webref intlist:method
|
483
|
+
* @brief Add to a value
|
484
|
+
*/
|
485
|
+
public void add(int index, int amount) {
|
486
|
+
if (index < count) {
|
487
|
+
data[index] += amount;
|
488
|
+
} else {
|
489
|
+
boundsProblem(index, "add");
|
490
|
+
}
|
491
|
+
}
|
492
|
+
|
493
|
+
/**
|
494
|
+
* @webref intlist:method
|
495
|
+
* @brief Subtract from a value
|
496
|
+
*/
|
497
|
+
public void sub(int index, int amount) {
|
498
|
+
if (index < count) {
|
499
|
+
data[index] -= amount;
|
500
|
+
} else {
|
501
|
+
boundsProblem(index, "sub");
|
502
|
+
}
|
503
|
+
}
|
504
|
+
|
505
|
+
/**
|
506
|
+
* @webref intlist:method
|
507
|
+
* @brief Multiply a value
|
508
|
+
*/
|
509
|
+
public void mult(int index, int amount) {
|
510
|
+
if (index < count) {
|
511
|
+
data[index] *= amount;
|
512
|
+
} else {
|
513
|
+
boundsProblem(index, "mult");
|
514
|
+
}
|
515
|
+
}
|
516
|
+
|
517
|
+
/**
|
518
|
+
* @webref intlist:method
|
519
|
+
* @brief Divide a value
|
520
|
+
*/
|
521
|
+
public void div(int index, int amount) {
|
522
|
+
if (index < count) {
|
523
|
+
data[index] /= amount;
|
524
|
+
} else {
|
525
|
+
boundsProblem(index, "div");
|
526
|
+
}
|
527
|
+
}
|
528
|
+
|
529
|
+
|
530
|
+
private void checkMinMax(String functionName) {
|
531
|
+
if (count == 0) {
|
532
|
+
String msg =
|
533
|
+
String.format("Cannot use %s() on an empty %s.",
|
534
|
+
functionName, getClass().getSimpleName());
|
535
|
+
throw new RuntimeException(msg);
|
536
|
+
}
|
537
|
+
}
|
538
|
+
|
539
|
+
|
540
|
+
/**
|
541
|
+
* @webref intlist:method
|
542
|
+
* @brief Return the smallest value
|
543
|
+
*/
|
544
|
+
public int min() {
|
545
|
+
checkMinMax("min");
|
546
|
+
int outgoing = data[0];
|
547
|
+
for (int i = 1; i < count; i++) {
|
548
|
+
if (data[i] < outgoing) outgoing = data[i];
|
549
|
+
}
|
550
|
+
return outgoing;
|
551
|
+
}
|
552
|
+
|
553
|
+
|
554
|
+
// returns the index of the minimum value.
|
555
|
+
// if there are ties, it returns the first one found.
|
556
|
+
public int minIndex() {
|
557
|
+
checkMinMax("minIndex");
|
558
|
+
int value = data[0];
|
559
|
+
int index = 0;
|
560
|
+
for (int i = 1; i < count; i++) {
|
561
|
+
if (data[i] < value) {
|
562
|
+
value = data[i];
|
563
|
+
index = i;
|
564
|
+
}
|
442
565
|
}
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
566
|
+
return index;
|
567
|
+
}
|
568
|
+
|
569
|
+
|
570
|
+
/**
|
571
|
+
* @webref intlist:method
|
572
|
+
* @brief Return the largest value
|
573
|
+
*/
|
574
|
+
public int max() {
|
575
|
+
checkMinMax("max");
|
576
|
+
int outgoing = data[0];
|
577
|
+
for (int i = 1; i < count; i++) {
|
578
|
+
if (data[i] > outgoing) outgoing = data[i];
|
579
|
+
}
|
580
|
+
return outgoing;
|
581
|
+
}
|
582
|
+
|
583
|
+
|
584
|
+
// returns the index of the maximum value.
|
585
|
+
// if there are ties, it returns the first one found.
|
586
|
+
public int maxIndex() {
|
587
|
+
checkMinMax("maxIndex");
|
588
|
+
int value = data[0];
|
589
|
+
int index = 0;
|
590
|
+
for (int i = 1; i < count; i++) {
|
591
|
+
if (data[i] > value) {
|
592
|
+
value = data[i];
|
593
|
+
index = i;
|
594
|
+
}
|
448
595
|
}
|
596
|
+
return index;
|
597
|
+
}
|
449
598
|
|
450
|
-
/**
|
451
|
-
* @webref intlist:method
|
452
|
-
* @brief Add to a value
|
453
|
-
*/
|
454
|
-
public void add(int index, int amount) {
|
455
|
-
if (index < count) {
|
456
|
-
data[index] += amount;
|
457
|
-
} else {
|
458
|
-
boundsProblem(index, "add");
|
459
|
-
}
|
460
|
-
}
|
461
599
|
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
public void sub(int index, int amount) {
|
467
|
-
if (index < count) {
|
468
|
-
data[index] -= amount;
|
469
|
-
} else {
|
470
|
-
boundsProblem(index, "sub");
|
471
|
-
}
|
600
|
+
public int sum() {
|
601
|
+
long amount = sumLong();
|
602
|
+
if (amount > Integer.MAX_VALUE) {
|
603
|
+
throw new RuntimeException("sum() exceeds " + Integer.MAX_VALUE + ", use sumLong()");
|
472
604
|
}
|
473
|
-
|
474
|
-
|
475
|
-
* @webref intlist:method
|
476
|
-
* @brief Multiply a value
|
477
|
-
*/
|
478
|
-
public void mult(int index, int amount) {
|
479
|
-
if (index < count) {
|
480
|
-
data[index] *= amount;
|
481
|
-
} else {
|
482
|
-
boundsProblem(index, "mult");
|
483
|
-
}
|
605
|
+
if (amount < Integer.MIN_VALUE) {
|
606
|
+
throw new RuntimeException("sum() less than " + Integer.MIN_VALUE + ", use sumLong()");
|
484
607
|
}
|
608
|
+
return (int) amount;
|
609
|
+
}
|
485
610
|
|
486
|
-
/**
|
487
|
-
* @webref intlist:method
|
488
|
-
* @brief Divide a value
|
489
|
-
*/
|
490
|
-
public void div(int index, int amount) {
|
491
|
-
if (index < count) {
|
492
|
-
data[index] /= amount;
|
493
|
-
} else {
|
494
|
-
boundsProblem(index, "div");
|
495
|
-
}
|
496
|
-
}
|
497
611
|
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
functionName, getClass().getSimpleName());
|
503
|
-
throw new RuntimeException(msg);
|
504
|
-
}
|
612
|
+
public long sumLong() {
|
613
|
+
long sum = 0;
|
614
|
+
for (int i = 0; i < count; i++) {
|
615
|
+
sum += data[i];
|
505
616
|
}
|
617
|
+
return sum;
|
618
|
+
}
|
506
619
|
|
507
|
-
/**
|
508
|
-
* @webref intlist:method
|
509
|
-
* @brief Return the smallest value
|
510
|
-
*/
|
511
|
-
public int min() {
|
512
|
-
checkMinMax("min");
|
513
|
-
int outgoing = data[0];
|
514
|
-
for (int i = 1; i < count; i++) {
|
515
|
-
if (data[i] < outgoing) {
|
516
|
-
outgoing = data[i];
|
517
|
-
}
|
518
|
-
}
|
519
|
-
return outgoing;
|
520
|
-
}
|
521
|
-
|
522
|
-
// returns the index of the minimum value.
|
523
|
-
// if there are ties, it returns the first one found.
|
524
|
-
public int minIndex() {
|
525
|
-
checkMinMax("minIndex");
|
526
|
-
int value = data[0];
|
527
|
-
int index = 0;
|
528
|
-
for (int i = 1; i < count; i++) {
|
529
|
-
if (data[i] < value) {
|
530
|
-
value = data[i];
|
531
|
-
index = i;
|
532
|
-
}
|
533
|
-
}
|
534
|
-
return index;
|
535
|
-
}
|
536
|
-
|
537
|
-
/**
|
538
|
-
* @webref intlist:method
|
539
|
-
* @brief Return the largest value
|
540
|
-
*/
|
541
|
-
public int max() {
|
542
|
-
checkMinMax("max");
|
543
|
-
int outgoing = data[0];
|
544
|
-
for (int i = 1; i < count; i++) {
|
545
|
-
if (data[i] > outgoing) {
|
546
|
-
outgoing = data[i];
|
547
|
-
}
|
548
|
-
}
|
549
|
-
return outgoing;
|
550
|
-
}
|
551
|
-
|
552
|
-
// returns the index of the maximum value.
|
553
|
-
// if there are ties, it returns the first one found.
|
554
|
-
public int maxIndex() {
|
555
|
-
checkMinMax("maxIndex");
|
556
|
-
int value = data[0];
|
557
|
-
int index = 0;
|
558
|
-
for (int i = 1; i < count; i++) {
|
559
|
-
if (data[i] > value) {
|
560
|
-
value = data[i];
|
561
|
-
index = i;
|
562
|
-
}
|
563
|
-
}
|
564
|
-
return index;
|
565
|
-
}
|
566
620
|
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
}
|
621
|
+
/**
|
622
|
+
* Sorts the array in place.
|
623
|
+
*
|
624
|
+
* @webref intlist:method
|
625
|
+
* @brief Sorts the array, lowest to highest
|
626
|
+
*/
|
627
|
+
public void sort() {
|
628
|
+
Arrays.sort(data, 0, count);
|
629
|
+
}
|
577
630
|
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
@Override
|
610
|
-
public int compare(int a, int b) {
|
611
|
-
return data[b] - data[a];
|
612
|
-
}
|
613
|
-
|
614
|
-
@Override
|
615
|
-
public void swap(int a, int b) {
|
616
|
-
int temp = data[a];
|
617
|
-
data[a] = data[b];
|
618
|
-
data[b] = temp;
|
619
|
-
}
|
620
|
-
}.run();
|
621
|
-
}
|
622
|
-
|
623
|
-
// use insert()
|
631
|
+
|
632
|
+
/**
|
633
|
+
* Reverse sort, orders values from highest to lowest.
|
634
|
+
*
|
635
|
+
* @webref intlist:method
|
636
|
+
* @brief Reverse sort, orders values from highest to lowest
|
637
|
+
*/
|
638
|
+
public void sortReverse() {
|
639
|
+
new Sort() {
|
640
|
+
@Override
|
641
|
+
public int size() {
|
642
|
+
return count;
|
643
|
+
}
|
644
|
+
|
645
|
+
@Override
|
646
|
+
public int compare(int a, int b) {
|
647
|
+
return data[b] - data[a];
|
648
|
+
}
|
649
|
+
|
650
|
+
@Override
|
651
|
+
public void swap(int a, int b) {
|
652
|
+
int temp = data[a];
|
653
|
+
data[a] = data[b];
|
654
|
+
data[b] = temp;
|
655
|
+
}
|
656
|
+
}.run();
|
657
|
+
}
|
658
|
+
|
659
|
+
|
660
|
+
// use insert()
|
624
661
|
// public void splice(int index, int value) {
|
625
662
|
// }
|
663
|
+
|
664
|
+
|
626
665
|
// public void subset(int start) {
|
627
666
|
// subset(start, count - start);
|
628
667
|
// }
|
@@ -634,116 +673,123 @@ public class IntList implements Iterable<Integer> {
|
|
634
673
|
// }
|
635
674
|
// count = num;
|
636
675
|
// }
|
637
|
-
/**
|
638
|
-
* @webref intlist:method
|
639
|
-
* @brief Reverse the order of the list elements
|
640
|
-
*/
|
641
|
-
public void reverse() {
|
642
|
-
int ii = count - 1;
|
643
|
-
for (int i = 0; i < count / 2; i++) {
|
644
|
-
int t = data[i];
|
645
|
-
data[i] = data[ii];
|
646
|
-
data[ii] = t;
|
647
|
-
--ii;
|
648
|
-
}
|
649
|
-
}
|
650
676
|
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
677
|
+
/**
|
678
|
+
* @webref intlist:method
|
679
|
+
* @brief Reverse the order of the list elements
|
680
|
+
*/
|
681
|
+
public void reverse() {
|
682
|
+
int ii = count - 1;
|
683
|
+
for (int i = 0; i < count/2; i++) {
|
684
|
+
int t = data[i];
|
685
|
+
data[i] = data[ii];
|
686
|
+
data[ii] = t;
|
687
|
+
--ii;
|
688
|
+
}
|
689
|
+
}
|
690
|
+
|
691
|
+
|
692
|
+
/**
|
693
|
+
* Randomize the order of the list elements. Note that this does not
|
694
|
+
* obey the randomSeed() function in PApplet.
|
695
|
+
*
|
696
|
+
* @webref intlist:method
|
697
|
+
* @brief Randomize the order of the list elements
|
698
|
+
*/
|
699
|
+
public void shuffle() {
|
700
|
+
Random r = new Random();
|
701
|
+
int num = count;
|
702
|
+
while (num > 1) {
|
703
|
+
int value = r.nextInt(num);
|
704
|
+
num--;
|
705
|
+
int temp = data[num];
|
706
|
+
data[num] = data[value];
|
707
|
+
data[value] = temp;
|
708
|
+
}
|
709
|
+
}
|
710
|
+
|
711
|
+
|
712
|
+
/**
|
713
|
+
* Randomize the list order using the random() function from the specified
|
714
|
+
* sketch, allowing shuffle() to use its current randomSeed() setting.
|
715
|
+
*/
|
716
|
+
public void shuffle(PApplet sketch) {
|
717
|
+
int num = count;
|
718
|
+
while (num > 1) {
|
719
|
+
int value = (int) sketch.random(num);
|
720
|
+
num--;
|
721
|
+
int temp = data[num];
|
722
|
+
data[num] = data[value];
|
723
|
+
data[value] = temp;
|
724
|
+
}
|
725
|
+
}
|
726
|
+
|
727
|
+
|
728
|
+
public IntList copy() {
|
729
|
+
IntList outgoing = new IntList(data);
|
730
|
+
outgoing.count = count;
|
731
|
+
return outgoing;
|
732
|
+
}
|
733
|
+
|
734
|
+
|
735
|
+
/**
|
736
|
+
* Returns the actual array being used to store the data. For advanced users,
|
737
|
+
* this is the fastest way to access a large list. Suitable for iterating
|
738
|
+
* with a for() loop, but modifying the list will have terrible consequences.
|
739
|
+
*/
|
740
|
+
public int[] values() {
|
741
|
+
crop();
|
742
|
+
return data;
|
743
|
+
}
|
744
|
+
|
745
|
+
|
746
|
+
@Override
|
747
|
+
public Iterator<Integer> iterator() {
|
748
|
+
// public Iterator<Integer> valueIterator() {
|
749
|
+
return new Iterator<Integer>() {
|
750
|
+
int index = -1;
|
669
751
|
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
public void shuffle(PApplet sketch) {
|
675
|
-
int num = count;
|
676
|
-
while (num > 1) {
|
677
|
-
int value = (int) sketch.random(num);
|
678
|
-
num--;
|
679
|
-
int temp = data[num];
|
680
|
-
data[num] = data[value];
|
681
|
-
data[value] = temp;
|
682
|
-
}
|
683
|
-
}
|
752
|
+
public void remove() {
|
753
|
+
IntList.this.remove(index);
|
754
|
+
index--;
|
755
|
+
}
|
684
756
|
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
return outgoing;
|
689
|
-
}
|
757
|
+
public Integer next() {
|
758
|
+
return data[++index];
|
759
|
+
}
|
690
760
|
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
*/
|
697
|
-
public int[] values() {
|
698
|
-
crop();
|
699
|
-
return data;
|
700
|
-
}
|
761
|
+
public boolean hasNext() {
|
762
|
+
return index+1 < count;
|
763
|
+
}
|
764
|
+
};
|
765
|
+
}
|
701
766
|
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
/**
|
724
|
-
* Create a new array with a copy of all the values.
|
725
|
-
*
|
726
|
-
* @return an array sized by the length of the list with each of the values.
|
727
|
-
* @webref intlist:method
|
728
|
-
* @brief Create a new array with a copy of all the values
|
729
|
-
*/
|
730
|
-
public int[] array() {
|
731
|
-
return array(null);
|
732
|
-
}
|
733
|
-
|
734
|
-
/**
|
735
|
-
* Copy values into the specified array. If the specified array is null or
|
736
|
-
* not the same size, a new array will be allocated.
|
737
|
-
*
|
738
|
-
* @param array
|
739
|
-
*/
|
740
|
-
public int[] array(int[] array) {
|
741
|
-
if (array == null || array.length != count) {
|
742
|
-
array = new int[count];
|
743
|
-
}
|
744
|
-
System.arraycopy(data, 0, array, 0, count);
|
745
|
-
return array;
|
767
|
+
|
768
|
+
/**
|
769
|
+
* Create a new array with a copy of all the values.
|
770
|
+
*
|
771
|
+
* @return an array sized by the length of the list with each of the values.
|
772
|
+
* @webref intlist:method
|
773
|
+
* @brief Create a new array with a copy of all the values
|
774
|
+
*/
|
775
|
+
public int[] array() {
|
776
|
+
return array(null);
|
777
|
+
}
|
778
|
+
|
779
|
+
|
780
|
+
/**
|
781
|
+
* Copy values into the specified array. If the specified array is null or
|
782
|
+
* not the same size, a new array will be allocated.
|
783
|
+
* @param array
|
784
|
+
*/
|
785
|
+
public int[] array(int[] array) {
|
786
|
+
if (array == null || array.length != count) {
|
787
|
+
array = new int[count];
|
746
788
|
}
|
789
|
+
System.arraycopy(data, 0, array, 0, count);
|
790
|
+
return array;
|
791
|
+
}
|
792
|
+
|
747
793
|
|
748
794
|
// public int[] toIntArray() {
|
749
795
|
// int[] outgoing = new int[count];
|
@@ -752,6 +798,8 @@ public class IntList implements Iterable<Integer> {
|
|
752
798
|
// }
|
753
799
|
// return outgoing;
|
754
800
|
// }
|
801
|
+
|
802
|
+
|
755
803
|
// public long[] toLongArray() {
|
756
804
|
// long[] outgoing = new long[count];
|
757
805
|
// for (int i = 0; i < count; i++) {
|
@@ -759,11 +807,15 @@ public class IntList implements Iterable<Integer> {
|
|
759
807
|
// }
|
760
808
|
// return outgoing;
|
761
809
|
// }
|
810
|
+
|
811
|
+
|
762
812
|
// public float[] toFloatArray() {
|
763
813
|
// float[] outgoing = new float[count];
|
764
814
|
// System.arraycopy(data, 0, outgoing, 0, count);
|
765
815
|
// return outgoing;
|
766
816
|
// }
|
817
|
+
|
818
|
+
|
767
819
|
// public double[] toDoubleArray() {
|
768
820
|
// double[] outgoing = new double[count];
|
769
821
|
// for (int i = 0; i < count; i++) {
|
@@ -771,6 +823,8 @@ public class IntList implements Iterable<Integer> {
|
|
771
823
|
// }
|
772
824
|
// return outgoing;
|
773
825
|
// }
|
826
|
+
|
827
|
+
|
774
828
|
// public String[] toStringArray() {
|
775
829
|
// String[] outgoing = new String[count];
|
776
830
|
// for (int i = 0; i < count; i++) {
|
@@ -778,24 +832,27 @@ public class IntList implements Iterable<Integer> {
|
|
778
832
|
// }
|
779
833
|
// return outgoing;
|
780
834
|
// }
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
835
|
+
|
836
|
+
|
837
|
+
/**
|
838
|
+
* Returns a normalized version of this array. Called getPercent() for
|
839
|
+
* consistency with the Dict classes. It's a getter method because it needs
|
840
|
+
* to returns a new list (because IntList/Dict can't do percentages or
|
841
|
+
* normalization in place on int values).
|
842
|
+
*/
|
843
|
+
public FloatList getPercent() {
|
844
|
+
double sum = 0;
|
845
|
+
for (float value : array()) {
|
846
|
+
sum += value;
|
847
|
+
}
|
848
|
+
FloatList outgoing = new FloatList(count);
|
849
|
+
for (int i = 0; i < count; i++) {
|
850
|
+
double percent = data[i] / sum;
|
851
|
+
outgoing.set(i, (float) percent);
|
798
852
|
}
|
853
|
+
return outgoing;
|
854
|
+
}
|
855
|
+
|
799
856
|
|
800
857
|
// /**
|
801
858
|
// * Count the number of times each entry is found in this list.
|
@@ -808,63 +865,72 @@ public class IntList implements Iterable<Integer> {
|
|
808
865
|
// }
|
809
866
|
// return outgoing;
|
810
867
|
// }
|
811
|
-
public IntList getSubset(int start) {
|
812
|
-
return getSubset(start, count - start);
|
813
|
-
}
|
814
868
|
|
815
|
-
public IntList getSubset(int start, int num) {
|
816
|
-
int[] subset = new int[num];
|
817
|
-
System.arraycopy(data, start, subset, 0, num);
|
818
|
-
return new IntList(subset);
|
819
|
-
}
|
820
869
|
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
}
|
825
|
-
StringBuilder sb = new StringBuilder();
|
826
|
-
sb.append(data[0]);
|
827
|
-
for (int i = 1; i < count; i++) {
|
828
|
-
sb.append(separator);
|
829
|
-
sb.append(data[i]);
|
830
|
-
}
|
831
|
-
return sb.toString();
|
832
|
-
}
|
870
|
+
public IntList getSubset(int start) {
|
871
|
+
return getSubset(start, count - start);
|
872
|
+
}
|
833
873
|
|
834
|
-
public void print() {
|
835
|
-
for (int i = 0; i < count; i++) {
|
836
|
-
System.out.format("[%d] %d%n", i, data[i]);
|
837
|
-
}
|
838
|
-
}
|
839
874
|
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
write(writer);
|
846
|
-
writer.close();
|
847
|
-
}
|
875
|
+
public IntList getSubset(int start, int num) {
|
876
|
+
int[] subset = new int[num];
|
877
|
+
System.arraycopy(data, start, subset, 0, num);
|
878
|
+
return new IntList(subset);
|
879
|
+
}
|
848
880
|
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
for (int i = 0; i < count; i++) {
|
854
|
-
writer.println(data[i]);
|
855
|
-
}
|
856
|
-
writer.flush();
|
881
|
+
|
882
|
+
public String join(String separator) {
|
883
|
+
if (count == 0) {
|
884
|
+
return "";
|
857
885
|
}
|
886
|
+
StringBuilder sb = new StringBuilder();
|
887
|
+
sb.append(data[0]);
|
888
|
+
for (int i = 1; i < count; i++) {
|
889
|
+
sb.append(separator);
|
890
|
+
sb.append(data[i]);
|
891
|
+
}
|
892
|
+
return sb.toString();
|
893
|
+
}
|
894
|
+
|
858
895
|
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
public String toJSON() {
|
863
|
-
return "[ " + join(", ") + " ]";
|
896
|
+
public void print() {
|
897
|
+
for (int i = 0; i < count; i++) {
|
898
|
+
System.out.format("[%d] %d%n", i, data[i]);
|
864
899
|
}
|
900
|
+
}
|
901
|
+
|
902
|
+
|
903
|
+
/**
|
904
|
+
* Save tab-delimited entries to a file (TSV format, UTF-8 encoding)
|
905
|
+
*/
|
906
|
+
public void save(File file) {
|
907
|
+
PrintWriter writer = PApplet.createWriter(file);
|
908
|
+
write(writer);
|
909
|
+
writer.close();
|
910
|
+
}
|
911
|
+
|
865
912
|
|
866
|
-
|
867
|
-
|
868
|
-
|
913
|
+
/**
|
914
|
+
* Write entries to a PrintWriter, one per line
|
915
|
+
*/
|
916
|
+
public void write(PrintWriter writer) {
|
917
|
+
for (int i = 0; i < count; i++) {
|
918
|
+
writer.println(data[i]);
|
869
919
|
}
|
920
|
+
writer.flush();
|
921
|
+
}
|
922
|
+
|
923
|
+
|
924
|
+
/**
|
925
|
+
* Return this dictionary as a String in JSON format.
|
926
|
+
*/
|
927
|
+
public String toJSON() {
|
928
|
+
return "[ " + join(", ") + " ]";
|
929
|
+
}
|
930
|
+
|
931
|
+
|
932
|
+
@Override
|
933
|
+
public String toString() {
|
934
|
+
return getClass().getSimpleName() + " size=" + size() + " " + toJSON();
|
935
|
+
}
|
870
936
|
}
|