picrate 0.3.0-java → 0.4.0-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 -1
- data/CHANGELOG.md +1 -2
- data/README.md +1 -1
- data/Rakefile +2 -2
- data/lib/picrate.rb +1 -0
- data/lib/picrate/app.rb +4 -4
- data/lib/picrate/helper_methods.rb +0 -4
- data/lib/picrate/version.rb +1 -1
- data/library/color_group/color_group.rb +27 -0
- data/picrate.gemspec +1 -1
- data/pom.rb +5 -5
- data/pom.xml +5 -5
- data/src/main/java/monkstone/ColorUtil.java +57 -32
- data/src/main/java/processing/awt/PShapeJava2D.java +33 -9
- data/src/main/java/processing/awt/PSurfaceAWT.java +169 -76
- data/src/main/java/processing/core/PApplet.java +15921 -13981
- data/src/main/java/processing/core/PConstants.java +981 -475
- data/src/main/java/processing/core/PFont.java +202 -50
- data/src/main/java/processing/core/PGraphics.java +8470 -7323
- data/src/main/java/processing/core/PImage.java +212 -42
- data/src/main/java/processing/core/PMatrix.java +160 -21
- data/src/main/java/processing/core/PMatrix2D.java +178 -18
- data/src/main/java/processing/core/PMatrix3D.java +324 -48
- data/src/main/java/processing/core/PShape.java +42 -20
- data/src/main/java/processing/core/PShapeOBJ.java +91 -16
- data/src/main/java/processing/core/PShapeSVG.java +253 -53
- data/src/main/java/processing/core/PStyle.java +179 -34
- data/src/main/java/processing/core/PSurface.java +94 -13
- data/src/main/java/processing/core/PSurfaceNone.java +140 -35
- data/src/main/java/processing/core/PVector.java +87 -10
- data/src/main/java/processing/data/JSONObject.java +2 -2
- data/src/main/java/processing/event/Event.java +69 -86
- data/src/main/java/processing/event/MouseEvent.java +102 -102
- data/src/main/java/processing/opengl/PJOGL.java +3 -0
- data/test/color_group_test.rb +33 -0
- data/vendors/Rakefile +1 -1
- metadata +7 -4
@@ -1,6 +1,6 @@
|
|
1
1
|
/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
2
2
|
|
3
|
-
/*
|
3
|
+
/*
|
4
4
|
Part of the Processing project - http://processing.org
|
5
5
|
|
6
6
|
Copyright (c) 2012 The Processing Foundation
|
@@ -18,132 +18,132 @@
|
|
18
18
|
Public License along with this library; if not, write to the
|
19
19
|
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
20
20
|
Boston, MA 02111-1307 USA
|
21
|
-
*/
|
22
|
-
|
21
|
+
*/
|
23
22
|
package processing.event;
|
24
23
|
|
25
24
|
//import processing.core.PConstants;
|
26
|
-
|
27
|
-
|
28
25
|
public class MouseEvent extends Event {
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
26
|
+
|
27
|
+
static public final int PRESS = 1;
|
28
|
+
static public final int RELEASE = 2;
|
29
|
+
static public final int CLICK = 3;
|
30
|
+
static public final int DRAG = 4;
|
31
|
+
static public final int MOVE = 5;
|
32
|
+
static public final int ENTER = 6;
|
33
|
+
static public final int EXIT = 7;
|
34
|
+
static public final int WHEEL = 8;
|
35
|
+
|
36
|
+
protected int x, y;
|
37
|
+
protected int button;
|
40
38
|
// protected int clickCount;
|
41
39
|
// protected float amount;
|
42
|
-
|
43
|
-
|
40
|
+
protected int count;
|
44
41
|
|
45
42
|
// public MouseEvent(int x, int y) {
|
46
43
|
// this(null,
|
47
44
|
// System.currentTimeMillis(), PRESSED, 0,
|
48
45
|
// x, y, PConstants.LEFT, 1);
|
49
46
|
// }
|
47
|
+
public MouseEvent(Object nativeObject,
|
48
|
+
long millis, int action, int modifiers,
|
49
|
+
int x, int y, int button, int count) { //float amount) { //int clickCount) {
|
50
|
+
super(nativeObject, millis, action, modifiers);
|
51
|
+
this.flavor = MOUSE;
|
52
|
+
this.x = x;
|
53
|
+
this.y = y;
|
54
|
+
this.button = button;
|
55
|
+
//this.clickCount = clickCount;
|
56
|
+
//this.amount = amount;
|
57
|
+
this.count = count;
|
58
|
+
}
|
50
59
|
|
60
|
+
public int getX() {
|
61
|
+
return x;
|
62
|
+
}
|
51
63
|
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
super(nativeObject, millis, action, modifiers);
|
56
|
-
this.flavor = MOUSE;
|
57
|
-
this.x = x;
|
58
|
-
this.y = y;
|
59
|
-
this.button = button;
|
60
|
-
//this.clickCount = clickCount;
|
61
|
-
//this.amount = amount;
|
62
|
-
this.count = count;
|
63
|
-
}
|
64
|
-
|
65
|
-
|
66
|
-
public int getX() {
|
67
|
-
return x;
|
68
|
-
}
|
69
|
-
|
70
|
-
|
71
|
-
public int getY() {
|
72
|
-
return y;
|
73
|
-
}
|
74
|
-
|
75
|
-
|
76
|
-
/** Which button was pressed, either LEFT, CENTER, or RIGHT. */
|
77
|
-
public int getButton() {
|
78
|
-
return button;
|
79
|
-
}
|
64
|
+
public int getY() {
|
65
|
+
return y;
|
66
|
+
}
|
80
67
|
|
68
|
+
/**
|
69
|
+
* Which button was pressed, either LEFT, CENTER, or RIGHT.
|
70
|
+
*
|
71
|
+
* @return
|
72
|
+
*/
|
73
|
+
public int getButton() {
|
74
|
+
return button;
|
75
|
+
}
|
81
76
|
|
82
77
|
// public void setButton(int button) {
|
83
78
|
// this.button = button;
|
84
79
|
// }
|
80
|
+
/**
|
81
|
+
* Do not use, getCount() is the correct method.
|
82
|
+
*
|
83
|
+
* @return
|
84
|
+
*/
|
85
|
+
@Deprecated
|
86
|
+
public int getClickCount() {
|
87
|
+
//return (int) amount; //clickCount;
|
88
|
+
return count;
|
89
|
+
}
|
85
90
|
|
91
|
+
/**
|
92
|
+
* Do not use, getCount() is the correct method.
|
93
|
+
*
|
94
|
+
* @return
|
95
|
+
*/
|
96
|
+
@Deprecated
|
97
|
+
public float getAmount() {
|
98
|
+
//return amount;
|
99
|
+
return count;
|
100
|
+
}
|
86
101
|
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
/**
|
104
|
-
* Number of clicks for mouse button events, or the number of steps (positive
|
105
|
-
* or negative depending on direction) for a mouse wheel event.
|
106
|
-
* Wheel events follow Java (see <a href="http://docs.oracle.com/javase/6/docs/api/java/awt/event/MouseWheelEvent.html#getWheelRotation()">here</a>), so
|
107
|
-
* getAmount() will return "negative values if the mouse wheel was rotated
|
108
|
-
* up or away from the user" and positive values in the other direction.
|
109
|
-
* On Mac OS X, this will be reversed when "natural" scrolling is enabled
|
110
|
-
* in System Preferences &rarr Mouse.
|
111
|
-
*/
|
112
|
-
public int getCount() {
|
113
|
-
return count;
|
114
|
-
}
|
115
|
-
|
102
|
+
/**
|
103
|
+
* Number of clicks for mouse button events, or the number of steps
|
104
|
+
* (positive or negative depending on direction) for a mouse wheel event.
|
105
|
+
* Wheel events follow Java (see
|
106
|
+
* <a href="http://docs.oracle.com/javase/6/docs/api/java/awt/event/MouseWheelEvent.html#getWheelRotation()">here</a>),
|
107
|
+
* so getAmount() will return "negative values if the mouse wheel was
|
108
|
+
* rotated up or away from the user" and positive values in the other
|
109
|
+
* direction. On Mac OS X, this will be reversed when "natural" scrolling is
|
110
|
+
* enabled in System Preferences &rarr Mouse.
|
111
|
+
*
|
112
|
+
* @return
|
113
|
+
*/
|
114
|
+
public int getCount() {
|
115
|
+
return count;
|
116
|
+
}
|
116
117
|
|
117
118
|
// public void setClickCount(int clickCount) {
|
118
119
|
// this.clickCount = clickCount;
|
119
120
|
// }
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
121
|
+
private String actionString() {
|
122
|
+
switch (action) {
|
123
|
+
default:
|
124
|
+
return "UNKNOWN";
|
125
|
+
case CLICK:
|
126
|
+
return "CLICK";
|
127
|
+
case DRAG:
|
128
|
+
return "DRAG";
|
129
|
+
case ENTER:
|
130
|
+
return "ENTER";
|
131
|
+
case EXIT:
|
132
|
+
return "EXIT";
|
133
|
+
case MOVE:
|
134
|
+
return "MOVE";
|
135
|
+
case PRESS:
|
136
|
+
return "PRESS";
|
137
|
+
case RELEASE:
|
138
|
+
return "RELEASE";
|
139
|
+
case WHEEL:
|
140
|
+
return "WHEEL";
|
141
|
+
}
|
141
142
|
}
|
142
|
-
}
|
143
143
|
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
144
|
+
@Override
|
145
|
+
public String toString() {
|
146
|
+
return String.format("<MouseEvent %s@%d,%d count:%d button:%d>",
|
147
|
+
actionString(), x, y, count, button);
|
148
|
+
}
|
149
149
|
}
|
@@ -503,12 +503,15 @@ public class PJOGL extends PGL {
|
|
503
503
|
return ((Font) font).deriveFont(size);
|
504
504
|
}
|
505
505
|
|
506
|
+
|
506
507
|
@Override
|
507
508
|
protected int getGLSLVersion() {
|
508
509
|
VersionNumber vn = context.getGLSLVersionNumber();
|
509
510
|
return vn.getMajor() * 100 + vn.getMinor();
|
510
511
|
}
|
511
512
|
|
513
|
+
|
514
|
+
@Override
|
512
515
|
protected String getGLSLVersionSuffix() {
|
513
516
|
VersionNumber vn = context.getGLSLVersionNumber();
|
514
517
|
if (context.isGLESProfile() && 1 < vn.getMajor()) {
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require_relative 'test_helper'
|
3
|
+
require 'java'
|
4
|
+
require_relative '../lib/picrate'
|
5
|
+
require_relative '../library/color_group/color_group'
|
6
|
+
|
7
|
+
Java::Monkstone::PicrateLibrary.new.load(JRuby.runtime, false)
|
8
|
+
java_import Java::Monkstone::ColorUtil
|
9
|
+
|
10
|
+
Dir.chdir(File.dirname(__FILE__))
|
11
|
+
|
12
|
+
PALETTE = %w[#FFFFFF #FF0000 #0000FF].freeze
|
13
|
+
COLORS = [16777215, 16711680, 255].to_java(:int)
|
14
|
+
|
15
|
+
class ColorGroupTest < Minitest::Test
|
16
|
+
def test_new
|
17
|
+
group = ColorGroup.new(COLORS)
|
18
|
+
assert group.kind_of? ColorGroup
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_web_array
|
22
|
+
group = ColorGroup.from_web_array(PALETTE)
|
23
|
+
assert group.kind_of? ColorGroup
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_ruby_string
|
27
|
+
p5array = [16777215, 16711680, 255]
|
28
|
+
group = ColorGroup.new(COLORS)
|
29
|
+
code_string = "%w[#FFFFFF #FF0000 #0000FF]\n"
|
30
|
+
result = group.ruby_code
|
31
|
+
assert_equal(result, code_string)
|
32
|
+
end
|
33
|
+
end
|
data/vendors/Rakefile
CHANGED
@@ -10,7 +10,7 @@ SOUND_VERSION = 'v1.3.2' # version 1.3.2
|
|
10
10
|
GLVIDEO = 'processing-glvideo.zip'
|
11
11
|
VIDEO = 'video-2.zip'
|
12
12
|
VIDEO_VERSION = '2' # version 1.0.1
|
13
|
-
EXAMPLES = '0.0.
|
13
|
+
EXAMPLES = '0.0.6'.freeze
|
14
14
|
HOME_DIR = ENV['HOME']
|
15
15
|
PI_OR_LINUX = /linux|arm/ =~ RbConfig::CONFIG['host_os']
|
16
16
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: picrate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- monkstone
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -168,7 +168,7 @@ files:
|
|
168
168
|
- lib/jogl-all-natives-linux-amd64.jar
|
169
169
|
- lib/jogl-all-natives-linux-armv6hf.jar
|
170
170
|
- lib/jogl-all.jar
|
171
|
-
- lib/picrate-0.
|
171
|
+
- lib/picrate-0.4.0.jar
|
172
172
|
- lib/picrate.rb
|
173
173
|
- lib/picrate/app.rb
|
174
174
|
- lib/picrate/creators/sketch_class.rb
|
@@ -184,6 +184,7 @@ files:
|
|
184
184
|
- lib/picrate/version.rb
|
185
185
|
- library/boids/boids.rb
|
186
186
|
- library/chooser/chooser.rb
|
187
|
+
- library/color_group/color_group.rb
|
187
188
|
- library/control_panel/control_panel.rb
|
188
189
|
- library/library_proxy/README.md
|
189
190
|
- library/library_proxy/library_proxy.rb
|
@@ -306,6 +307,7 @@ files:
|
|
306
307
|
- src/main/resources/icon/icon-512.png
|
307
308
|
- src/main/resources/icon/icon-64.png
|
308
309
|
- src/main/resources/license.txt
|
310
|
+
- test/color_group_test.rb
|
309
311
|
- test/create_test.rb
|
310
312
|
- test/deglut_spec_test.rb
|
311
313
|
- test/helper_methods_test.rb
|
@@ -338,11 +340,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
338
340
|
requirements:
|
339
341
|
- java runtime >= 1.8.0_161+
|
340
342
|
rubyforge_project:
|
341
|
-
rubygems_version: 2.7.
|
343
|
+
rubygems_version: 2.7.7
|
342
344
|
signing_key:
|
343
345
|
specification_version: 4
|
344
346
|
summary: ruby wrapper for processing-3.3.7 on raspberrypi and linux64
|
345
347
|
test_files:
|
348
|
+
- test/color_group_test.rb
|
346
349
|
- test/create_test.rb
|
347
350
|
- test/deglut_spec_test.rb
|
348
351
|
- test/helper_methods_test.rb
|