processing 1.1.5 → 1.1.7
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/.github/PULL_REQUEST_TEMPLATE.md +12 -0
- data/CONTRIBUTING.md +7 -0
- data/ChangeLog.md +17 -0
- data/Gemfile.lock +1 -1
- data/README.md +40 -4
- data/VERSION +1 -1
- data/lib/processing/context.rb +27 -11
- data/lib/processing/graphics_context.rb +10 -5
- data/lib/processing/vector.rb +8 -0
- data/lib/processing.rb +3 -3
- data/processing.gemspec +4 -4
- data/test/browser.rb +4 -3
- data/test/test_vector.rb +5 -0
- metadata +20 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15dd5800086b6560921beac437cb60b85c157a72cd07842e4f0acac9abb53a23
|
4
|
+
data.tar.gz: 33a8e24da31e107927d69a30f3a7bb1d33221e820b2e4e0f701c3c1f21bc1a3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 530bdfee80b43f0becdd58a9a2c0cef01f5621118c19acb79d857903ca6d636450b26db764d89dcecaeaf88fc589530d211dc29750ddc07b87e0b0e501dc70cc
|
7
|
+
data.tar.gz: 9ec9bfa7c9e2f2eb5698daa069ff8369d4cf23b6cf3f376629044d7a4177d9df63b4df1fb13de62111fb702bf2dd67ebf980570ba47166644e07bd7d4c138696
|
@@ -0,0 +1,12 @@
|
|
1
|
+
## Pull Requests Not Accepted 🚫
|
2
|
+
|
3
|
+
Thank you for your interest in contributing!
|
4
|
+
However, this repository does not accept pull requests directly.
|
5
|
+
|
6
|
+
### Where to Contribute?
|
7
|
+
|
8
|
+
Please submit your changes to the [xord/all](https://github.com/xord/all) monorepo, which serves as the primary repository for all our main libraries.
|
9
|
+
|
10
|
+
For more details, please refer to our [contribution guidelines](../CONTRIBUTING.md).
|
11
|
+
|
12
|
+
Thanks for your understanding! 🙌
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# Contribution Guide
|
2
|
+
|
3
|
+
Thank you for your interest in contributing!
|
4
|
+
However, this repository does not accept pull requests.
|
5
|
+
Instead, please submit your changes to the [xord/all](https://github.com/xord/all) monorepo, which serves as the primary repository for all our main libraries.
|
6
|
+
|
7
|
+
For any questions, feel free to open an issue.
|
data/ChangeLog.md
CHANGED
@@ -1,6 +1,23 @@
|
|
1
1
|
# processing ChangeLog
|
2
2
|
|
3
3
|
|
4
|
+
## [v1.1.7] - 2025-03-24
|
5
|
+
|
6
|
+
- Add PULL_REQUEST_TEMPLATE.md
|
7
|
+
- Add CONTRIBUTING.md
|
8
|
+
|
9
|
+
|
10
|
+
## [v1.1.6] - 2025-03-07
|
11
|
+
|
12
|
+
- Add keyIsRepeat
|
13
|
+
- Add Vector#-@
|
14
|
+
|
15
|
+
- Painter#background: Clearing background with transparency uses blend_mode with :replace to replace alpha value
|
16
|
+
- Fix p5.rb version
|
17
|
+
|
18
|
+
- Fix smaller-than-expected height of screenshots rendered in headless chrome
|
19
|
+
|
20
|
+
|
4
21
|
## [v1.1.5] - 2025-01-30
|
5
22
|
|
6
23
|
- Do not define snake_case methods by default
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,11 +1,47 @@
|
|
1
1
|
# Processing for CRuby - Processing compatible Creative Coding Framework
|
2
2
|
|
3
|
-
|
3
|
+

|
4
|
+

|
5
|
+

|
4
6
|
|
7
|
+
## ⚠️ Notice
|
5
8
|
|
6
|
-
|
9
|
+
This repository is a read-only mirror of our monorepo.
|
10
|
+
We do not accept pull requests or direct contributions here.
|
7
11
|
|
12
|
+
### 🔄 Where to Contribute?
|
13
|
+
|
14
|
+
All development happens in our [xord/all](https://github.com/xord/all) monorepo, which contains all our main libraries.
|
15
|
+
If you'd like to contribute, please submit your changes there.
|
16
|
+
|
17
|
+
For more details, check out our [Contribution Guidelines](./CONTRIBUTING.md).
|
18
|
+
|
19
|
+
Thanks for your support! 🙌
|
20
|
+
|
21
|
+
## 🚀 About
|
22
|
+
|
23
|
+
**Processing for CRuby** is a creative coding framework compatible with the Processing language, designed specifically for CRuby.
|
24
|
+
|
25
|
+
It allows artists and developers to create visual art and interactive graphics using the familiar Processing syntax and concepts, leveraging the power and flexibility of Ruby.
|
26
|
+
|
27
|
+
## 📦 Installation
|
28
|
+
|
29
|
+
Add this line to your Gemfile:
|
30
|
+
```ruby
|
31
|
+
$ gem 'processing'
|
32
|
+
```
|
33
|
+
|
34
|
+
Then, install gem:
|
35
|
+
```bash
|
36
|
+
$ bundle install
|
8
37
|
```
|
9
|
-
|
10
|
-
|
38
|
+
|
39
|
+
Or install it directly:
|
40
|
+
```bash
|
41
|
+
$ gem install processing
|
11
42
|
```
|
43
|
+
|
44
|
+
## 📜 License
|
45
|
+
|
46
|
+
**Processing for CRuby** is licensed under the MIT License.
|
47
|
+
See the [LICENSE](./LICENSE) file for details.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.7
|
data/lib/processing/context.rb
CHANGED
@@ -26,16 +26,24 @@ module Processing
|
|
26
26
|
LANDSCAPE = :landscape
|
27
27
|
|
28
28
|
# @private
|
29
|
-
@@
|
29
|
+
@@rootContext__ = nil
|
30
|
+
|
31
|
+
# @private
|
32
|
+
@@context__ = nil
|
30
33
|
|
31
34
|
# @private
|
32
35
|
def self.context__()
|
33
|
-
@@context__
|
36
|
+
@@context__ || @@rootContext__
|
37
|
+
end
|
38
|
+
|
39
|
+
# @private
|
40
|
+
def self.setContext__(context)
|
41
|
+
@@context__ = context
|
34
42
|
end
|
35
43
|
|
36
44
|
# @private
|
37
45
|
def initialize(window)
|
38
|
-
@@
|
46
|
+
@@rootContext__ = self
|
39
47
|
|
40
48
|
tmpdir__.tap {|dir| FileUtils.rm_r dir.to_s if dir.directory?}
|
41
49
|
|
@@ -50,6 +58,7 @@ module Processing
|
|
50
58
|
@frameCount__ = 0
|
51
59
|
@key__ = nil
|
52
60
|
@keyCode__ = nil
|
61
|
+
@keyRepeat__ = false
|
53
62
|
@keysPressed__ = Set.new
|
54
63
|
@pointer__ = nil
|
55
64
|
@pointerPrev__ = nil
|
@@ -87,12 +96,11 @@ module Processing
|
|
87
96
|
end
|
88
97
|
|
89
98
|
updateKeyStates = -> event, pressed {
|
90
|
-
|
91
|
-
@
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
end
|
99
|
+
set = @keysPressed__
|
100
|
+
@key__ = event.chars
|
101
|
+
@keyCode__ = event.key
|
102
|
+
@keyRepeat__ = pressed && set.include?(@keyCode__)
|
103
|
+
pressed ? set.add(@keyCode__) : set.delete(@keyCode__)
|
96
104
|
}
|
97
105
|
|
98
106
|
mouseButtonMap = {
|
@@ -633,7 +641,7 @@ module Processing
|
|
633
641
|
@window__.height
|
634
642
|
end
|
635
643
|
|
636
|
-
# Returns
|
644
|
+
# Returns whether the window is active or not.
|
637
645
|
#
|
638
646
|
# @return [Boolean] active or not
|
639
647
|
#
|
@@ -708,7 +716,7 @@ module Processing
|
|
708
716
|
not @keysPressed__.empty?
|
709
717
|
end
|
710
718
|
|
711
|
-
# Returns
|
719
|
+
# Returns whether or not the key is currently pressed.
|
712
720
|
#
|
713
721
|
# @param keyCode [Numeric] code for the key
|
714
722
|
#
|
@@ -720,6 +728,14 @@ module Processing
|
|
720
728
|
@keysPressed__.include? keyCode
|
721
729
|
end
|
722
730
|
|
731
|
+
# Returns whether the current key is repeated or not.
|
732
|
+
#
|
733
|
+
# @return [Boolean] is the key repeated or not
|
734
|
+
#
|
735
|
+
def keyIsRepeated()
|
736
|
+
@keyRepeat__
|
737
|
+
end
|
738
|
+
|
723
739
|
# Returns mouse x position
|
724
740
|
#
|
725
741
|
# @return [Numeric] horizontal position of mouse
|
@@ -461,7 +461,7 @@ module Processing
|
|
461
461
|
FONT_SIZE_MAX__ = 256
|
462
462
|
|
463
463
|
# @private
|
464
|
-
def init__(image, painter)
|
464
|
+
def init__(image, painter = image.painter)
|
465
465
|
@drawing__ = false
|
466
466
|
@renderMode__ = nil
|
467
467
|
@p5jsMode__ = false
|
@@ -525,15 +525,20 @@ module Processing
|
|
525
525
|
end
|
526
526
|
|
527
527
|
# @private
|
528
|
-
def updateCanvas__(image, painter)
|
528
|
+
def updateCanvas__(image, painter = image.painter)
|
529
|
+
drawing = @drawing__
|
530
|
+
endDraw__ if drawing
|
531
|
+
|
529
532
|
@image__, @painter__ = image, painter
|
530
533
|
@painter__.miter_limit = 10
|
531
534
|
@painter__.stroke_outset = 0.5
|
535
|
+
|
536
|
+
beginDraw__ if drawing
|
532
537
|
end
|
533
538
|
|
534
539
|
# @private
|
535
540
|
def beginDraw__()
|
536
|
-
raise "
|
541
|
+
raise "beginDraw() is already called" if @drawing__
|
537
542
|
@matrixStack__.clear
|
538
543
|
@styleStack__.clear
|
539
544
|
@drawing__ = true
|
@@ -561,7 +566,7 @@ module Processing
|
|
561
566
|
|
562
567
|
# @private
|
563
568
|
def endDraw__()
|
564
|
-
|
569
|
+
assertDrawing__
|
565
570
|
@drawing__ = false
|
566
571
|
end
|
567
572
|
|
@@ -1448,7 +1453,7 @@ module Processing
|
|
1448
1453
|
if rgba[3] == 1
|
1449
1454
|
@painter__.background(*rgba)
|
1450
1455
|
else
|
1451
|
-
@painter__.push fill: rgba, stroke: :none do |_|
|
1456
|
+
@painter__.push fill: rgba, stroke: :none, blend_mode: :replace do |_|
|
1452
1457
|
@painter__.rect 0, 0, width, height
|
1453
1458
|
end
|
1454
1459
|
end
|
data/lib/processing/vector.rb
CHANGED
data/lib/processing.rb
CHANGED
@@ -36,9 +36,9 @@ end
|
|
36
36
|
begin
|
37
37
|
w, c = Processing::WINDOW__, Processing::CONTEXT__
|
38
38
|
|
39
|
-
c.class.constants
|
40
|
-
|
41
|
-
|
39
|
+
c.class.constants
|
40
|
+
.reject {_1 =~ /__$/}
|
41
|
+
.each {self.class.const_set _1, c.class.const_get(_1)}
|
42
42
|
|
43
43
|
w.__send__ :begin_draw
|
44
44
|
at_exit do
|
data/processing.gemspec
CHANGED
@@ -26,10 +26,10 @@ Gem::Specification.new do |s|
|
|
26
26
|
s.required_ruby_version = '>= 3.0.0'
|
27
27
|
|
28
28
|
s.add_dependency 'rexml'
|
29
|
-
s.add_dependency 'xot', '~> 0.3.
|
30
|
-
s.add_dependency 'rucy', '~> 0.3.
|
31
|
-
s.add_dependency 'rays', '~> 0.3.
|
32
|
-
s.add_dependency 'reflexion', '~> 0.3.
|
29
|
+
s.add_dependency 'xot', '~> 0.3.5', '>= 0.3.5'
|
30
|
+
s.add_dependency 'rucy', '~> 0.3.5', '>= 0.3.5'
|
31
|
+
s.add_dependency 'rays', '~> 0.3.5', '>= 0.3.5'
|
32
|
+
s.add_dependency 'reflexion', '~> 0.3.5', '>= 0.3.5'
|
33
33
|
|
34
34
|
s.files = `git ls-files`.split $/
|
35
35
|
s.test_files = s.files.grep %r{^(test|spec|features)/}
|
data/test/browser.rb
CHANGED
@@ -3,14 +3,14 @@ require 'ferrum'
|
|
3
3
|
|
4
4
|
RUBY_URL = 'https://cdn.jsdelivr.net/npm/ruby-3_2-wasm-wasi@next/dist/browser.script.iife.js'
|
5
5
|
P5JS_URL = 'https://cdn.jsdelivr.net/npm/p5@1.5.0/lib/p5.js'
|
6
|
-
P5RB_URL = 'https://raw.githubusercontent.com/ongaeshi/p5rb/
|
6
|
+
P5RB_URL = 'https://raw.githubusercontent.com/ongaeshi/p5rb/421ce24c4a29c5787d143f8132eb610b73f60b92/docs/lib/p5.rb'
|
7
7
|
|
8
8
|
P5RB_SRC = URI.open(P5RB_URL) {|f| f.read}
|
9
9
|
|
10
10
|
def browser(width, height, headless: true)
|
11
11
|
hash = ($browsers ||= {})
|
12
12
|
key = [width, height, headless]
|
13
|
-
hash[key] ||= Ferrum::Browser.new headless: headless, window_size: [width, height]
|
13
|
+
hash[key] ||= Ferrum::Browser.new headless: headless, window_size: [width, height + 200]
|
14
14
|
end
|
15
15
|
|
16
16
|
def get_svg_html(width, height, svg_xml)
|
@@ -95,8 +95,9 @@ def draw_on_browser(width, height, path, html, headless: true)
|
|
95
95
|
sleep_until do
|
96
96
|
b.evaluate 'document.querySelector("#completed") != null'
|
97
97
|
end
|
98
|
-
b.screenshot path: path
|
98
|
+
b.screenshot path: path, area: {x: 0, y: 0, width: width, height: height}
|
99
99
|
end
|
100
|
+
sleep 1
|
100
101
|
b.device_pixel_ratio
|
101
102
|
end
|
102
103
|
|
data/test/test_vector.rb
CHANGED
@@ -191,6 +191,11 @@ class TestVector < Test::Unit::TestCase
|
|
191
191
|
assert_equal_vector vec(2, 4, 6), v
|
192
192
|
end
|
193
193
|
|
194
|
+
def test_op_negate()
|
195
|
+
assert_equal_vector vec(-1, -2, -3), -vec( 1, 2, 3)
|
196
|
+
assert_equal_vector vec( 1, 2, 3), -vec(-1, -2, -3)
|
197
|
+
end
|
198
|
+
|
194
199
|
def test_fun_add()
|
195
200
|
v1 = vec 1, 2, 3
|
196
201
|
v2 = vec 4, 5, 6
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: processing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- xordog
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rexml
|
@@ -30,86 +30,87 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.3.
|
33
|
+
version: 0.3.5
|
34
34
|
- - ">="
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: 0.3.
|
36
|
+
version: 0.3.5
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
40
40
|
requirements:
|
41
41
|
- - "~>"
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version: 0.3.
|
43
|
+
version: 0.3.5
|
44
44
|
- - ">="
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 0.3.
|
46
|
+
version: 0.3.5
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: rucy
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 0.3.
|
53
|
+
version: 0.3.5
|
54
54
|
- - ">="
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: 0.3.
|
56
|
+
version: 0.3.5
|
57
57
|
type: :runtime
|
58
58
|
prerelease: false
|
59
59
|
version_requirements: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
61
|
- - "~>"
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: 0.3.
|
63
|
+
version: 0.3.5
|
64
64
|
- - ">="
|
65
65
|
- !ruby/object:Gem::Version
|
66
|
-
version: 0.3.
|
66
|
+
version: 0.3.5
|
67
67
|
- !ruby/object:Gem::Dependency
|
68
68
|
name: rays
|
69
69
|
requirement: !ruby/object:Gem::Requirement
|
70
70
|
requirements:
|
71
71
|
- - "~>"
|
72
72
|
- !ruby/object:Gem::Version
|
73
|
-
version: 0.3.
|
73
|
+
version: 0.3.5
|
74
74
|
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
|
-
version: 0.3.
|
76
|
+
version: 0.3.5
|
77
77
|
type: :runtime
|
78
78
|
prerelease: false
|
79
79
|
version_requirements: !ruby/object:Gem::Requirement
|
80
80
|
requirements:
|
81
81
|
- - "~>"
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version: 0.3.
|
83
|
+
version: 0.3.5
|
84
84
|
- - ">="
|
85
85
|
- !ruby/object:Gem::Version
|
86
|
-
version: 0.3.
|
86
|
+
version: 0.3.5
|
87
87
|
- !ruby/object:Gem::Dependency
|
88
88
|
name: reflexion
|
89
89
|
requirement: !ruby/object:Gem::Requirement
|
90
90
|
requirements:
|
91
91
|
- - "~>"
|
92
92
|
- !ruby/object:Gem::Version
|
93
|
-
version: 0.3.
|
93
|
+
version: 0.3.5
|
94
94
|
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 0.3.
|
96
|
+
version: 0.3.5
|
97
97
|
type: :runtime
|
98
98
|
prerelease: false
|
99
99
|
version_requirements: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 0.3.
|
103
|
+
version: 0.3.5
|
104
104
|
- - ">="
|
105
105
|
- !ruby/object:Gem::Version
|
106
|
-
version: 0.3.
|
106
|
+
version: 0.3.5
|
107
107
|
description: Creative Coding Framework has API compatible to Processing or p5.js.
|
108
108
|
email: xordog@gmail.com
|
109
109
|
executables: []
|
110
110
|
extensions: []
|
111
111
|
extra_rdoc_files: []
|
112
112
|
files:
|
113
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
113
114
|
- ".github/workflows/release-gem.yml"
|
114
115
|
- ".github/workflows/tag.yml"
|
115
116
|
- ".github/workflows/test-draw.yml"
|
@@ -117,6 +118,7 @@ files:
|
|
117
118
|
- ".github/workflows/utils.rb"
|
118
119
|
- ".gitignore"
|
119
120
|
- ".yardopts"
|
121
|
+
- CONTRIBUTING.md
|
120
122
|
- ChangeLog.md
|
121
123
|
- Gemfile
|
122
124
|
- Gemfile.lock
|