scarpe 0.2.2 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (223) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +1 -0
  3. data/CHANGELOG.md +16 -2
  4. data/Gemfile.lock +7 -3
  5. data/README.md +24 -8
  6. data/Rakefile +1 -1
  7. data/examples/animate.rb +20 -0
  8. data/examples/arrow.rb +10 -0
  9. data/examples/btn_tooltip.rb +7 -0
  10. data/examples/button_style_changed.rb +7 -0
  11. data/examples/button_styles_default.rb +6 -0
  12. data/examples/gen.rb +8 -8
  13. data/examples/highlander.rb +3 -3
  14. data/examples/legacy/README.md +6 -0
  15. data/examples/legacy/not_checked/shoes-contrib/basic/shoes-notes.rb +1 -1
  16. data/examples/legacy/not_checked/simple/anim-shapes.rb +1 -1
  17. data/examples/legacy/not_checked/speedometer_app.rb +55 -0
  18. data/examples/legacy/working/simple/image-icon.rb +3 -0
  19. data/examples/legacy/{not_checked → working}/simple/image.rb +1 -1
  20. data/examples/list_box_choose.rb +17 -0
  21. data/examples/local_assets/local_file_server.rb +82 -0
  22. data/examples/local_assets/sample.gif +0 -0
  23. data/examples/local_assets/sample.mp4 +0 -0
  24. data/examples/local_fonts.rb +2 -2
  25. data/examples/local_images.rb +2 -3
  26. data/examples/para/para_text.rb +14 -0
  27. data/examples/progress.rb +31 -0
  28. data/examples/radio/radio_groups.rb +2 -2
  29. data/examples/rect.rb +4 -0
  30. data/examples/rotate_shapes.rb +17 -0
  31. data/examples/simpler-menu.rb +21 -0
  32. data/exe/scarpe +2 -1
  33. data/lacci/Gemfile +2 -0
  34. data/lacci/Gemfile.lock +8 -1
  35. data/lacci/lacci.gemspec +1 -1
  36. data/lacci/lib/lacci/scarpe_cli.rb +2 -1
  37. data/lacci/lib/lacci/scarpe_core.rb +2 -1
  38. data/lacci/lib/lacci/version.rb +1 -1
  39. data/lacci/lib/scarpe/niente/app.rb +23 -0
  40. data/lacci/lib/scarpe/niente/display_service.rb +62 -0
  41. data/lacci/lib/scarpe/niente/drawable.rb +57 -0
  42. data/lacci/lib/scarpe/niente/logger.rb +29 -0
  43. data/lacci/lib/scarpe/niente/shoes_spec.rb +87 -0
  44. data/lacci/lib/scarpe/niente.rb +20 -0
  45. data/lacci/lib/shoes/app.rb +88 -43
  46. data/lacci/lib/shoes/background.rb +2 -2
  47. data/lacci/lib/shoes/border.rb +2 -2
  48. data/lacci/lib/shoes/builtins.rb +63 -0
  49. data/lacci/lib/shoes/changelog.rb +52 -0
  50. data/lacci/lib/shoes/colors.rb +3 -1
  51. data/lacci/lib/shoes/constants.rb +19 -1
  52. data/lacci/lib/shoes/display_service.rb +39 -16
  53. data/lacci/lib/shoes/download.rb +2 -2
  54. data/lacci/lib/shoes/drawable.rb +380 -0
  55. data/lacci/lib/shoes/drawables/arc.rb +49 -0
  56. data/lacci/lib/shoes/drawables/arrow.rb +41 -0
  57. data/lacci/lib/shoes/drawables/button.rb +73 -0
  58. data/lacci/lib/shoes/{widgets → drawables}/check.rb +5 -4
  59. data/lacci/lib/shoes/{widgets → drawables}/document_root.rb +3 -3
  60. data/lacci/lib/shoes/{widgets → drawables}/edit_box.rb +6 -6
  61. data/lacci/lib/shoes/{widgets → drawables}/edit_line.rb +6 -6
  62. data/lacci/lib/shoes/{widgets → drawables}/flow.rb +6 -6
  63. data/lacci/lib/shoes/{widgets → drawables}/image.rb +6 -6
  64. data/lacci/lib/shoes/{widgets → drawables}/line.rb +7 -5
  65. data/lacci/lib/shoes/drawables/link.rb +34 -0
  66. data/lacci/lib/shoes/drawables/list_box.rb +56 -0
  67. data/lacci/lib/shoes/drawables/para.rb +118 -0
  68. data/lacci/lib/shoes/drawables/progress.rb +14 -0
  69. data/lacci/lib/shoes/drawables/radio.rb +33 -0
  70. data/lacci/lib/shoes/drawables/rect.rb +17 -0
  71. data/lacci/lib/shoes/{widgets → drawables}/shape.rb +6 -7
  72. data/lacci/lib/shoes/{widgets → drawables}/slot.rb +32 -20
  73. data/lacci/lib/shoes/{widgets → drawables}/span.rb +8 -7
  74. data/lacci/lib/shoes/{widgets → drawables}/stack.rb +6 -4
  75. data/lacci/lib/shoes/drawables/star.rb +50 -0
  76. data/lacci/lib/shoes/drawables/subscription_item.rb +93 -0
  77. data/lacci/lib/shoes/drawables/text_drawable.rb +63 -0
  78. data/lacci/lib/shoes/drawables/video.rb +16 -0
  79. data/lacci/lib/shoes/drawables/widget.rb +69 -0
  80. data/lacci/lib/shoes/drawables.rb +31 -0
  81. data/lacci/lib/shoes/errors.rb +28 -0
  82. data/lacci/lib/shoes/log.rb +2 -2
  83. data/lacci/lib/shoes/ruby_extensions.rb +15 -0
  84. data/lacci/lib/shoes/spacing.rb +2 -2
  85. data/lacci/lib/shoes-spec.rb +93 -0
  86. data/lacci/lib/shoes.rb +27 -7
  87. data/lacci/test/test_helper.rb +54 -0
  88. data/lacci/test/test_lacci.rb +12 -3
  89. data/lacci/test/test_shoes_errors.rb +49 -0
  90. data/lib/scarpe/cats_cradle.rb +81 -59
  91. data/lib/scarpe/errors.rb +77 -0
  92. data/lib/scarpe/evented_assertions.rb +50 -17
  93. data/lib/scarpe/shoes_spec.rb +181 -0
  94. data/lib/scarpe/version.rb +2 -2
  95. data/lib/scarpe/wv/app.rb +20 -20
  96. data/lib/scarpe/wv/arc.rb +4 -47
  97. data/lib/scarpe/wv/arrow.rb +9 -0
  98. data/lib/scarpe/wv/button.rb +7 -35
  99. data/lib/scarpe/wv/check.rb +3 -5
  100. data/lib/scarpe/wv/control_interface.rb +18 -20
  101. data/lib/scarpe/wv/document_root.rb +81 -4
  102. data/lib/scarpe/wv/{widget.rb → drawable.rb} +66 -43
  103. data/lib/scarpe/wv/edit_box.rb +4 -17
  104. data/lib/scarpe/wv/edit_line.rb +4 -18
  105. data/lib/scarpe/wv/flow.rb +2 -18
  106. data/lib/scarpe/wv/image.rb +8 -28
  107. data/lib/scarpe/wv/line.rb +3 -25
  108. data/lib/scarpe/wv/link.rb +3 -16
  109. data/lib/scarpe/wv/list_box.rb +6 -29
  110. data/lib/scarpe/wv/para.rb +11 -30
  111. data/lib/scarpe/wv/progress.rb +19 -0
  112. data/lib/scarpe/wv/radio.rb +9 -10
  113. data/lib/scarpe/wv/rect.rb +13 -0
  114. data/lib/scarpe/wv/shape.rb +3 -8
  115. data/lib/scarpe/wv/slot.rb +8 -25
  116. data/lib/scarpe/wv/span.rb +3 -27
  117. data/lib/scarpe/wv/stack.rb +2 -18
  118. data/lib/scarpe/wv/star.rb +3 -53
  119. data/lib/scarpe/wv/subscription_item.rb +38 -4
  120. data/lib/scarpe/wv/text_drawable.rb +32 -0
  121. data/lib/scarpe/wv/video.rb +15 -15
  122. data/lib/scarpe/wv/web_wrangler.rb +299 -329
  123. data/lib/scarpe/wv/webview_local_display.rb +48 -33
  124. data/lib/scarpe/wv/webview_relay_display.rb +12 -12
  125. data/lib/scarpe/wv/webview_relay_util.rb +7 -10
  126. data/lib/scarpe/wv/wv_display_worker.rb +2 -2
  127. data/lib/scarpe/wv.rb +45 -12
  128. data/lib/scarpe/wv_local.rb +1 -1
  129. data/lib/scarpe/wv_relay.rb +1 -1
  130. data/lib/scarpe.rb +1 -0
  131. data/logger/debug_web_wrangler.json +1 -1
  132. data/logger/scarpe_wv_test.json +1 -1
  133. data/scarpe-components/Gemfile.lock +86 -0
  134. data/scarpe-components/lib/scarpe/components/base64.rb +3 -7
  135. data/scarpe-components/lib/scarpe/components/calzini/alert.rb +49 -0
  136. data/scarpe-components/lib/scarpe/components/calzini/art_widgets.rb +203 -0
  137. data/scarpe-components/lib/scarpe/components/calzini/button.rb +39 -0
  138. data/scarpe-components/lib/scarpe/components/calzini/misc.rb +146 -0
  139. data/scarpe-components/lib/scarpe/components/calzini/para.rb +35 -0
  140. data/scarpe-components/lib/scarpe/components/calzini/slots.rb +155 -0
  141. data/scarpe-components/lib/scarpe/components/calzini/text_widgets.rb +65 -0
  142. data/scarpe-components/lib/scarpe/components/calzini.rb +149 -0
  143. data/scarpe-components/lib/scarpe/components/errors.rb +20 -0
  144. data/scarpe-components/lib/scarpe/components/file_helpers.rb +1 -0
  145. data/scarpe-components/lib/scarpe/components/html.rb +131 -0
  146. data/scarpe-components/lib/scarpe/components/minitest_export_reporter.rb +75 -0
  147. data/scarpe-components/lib/scarpe/components/minitest_import_runnable.rb +98 -0
  148. data/scarpe-components/lib/scarpe/components/minitest_result.rb +86 -0
  149. data/scarpe-components/lib/scarpe/components/modular_logger.rb +5 -5
  150. data/scarpe-components/lib/scarpe/components/print_logger.rb +9 -5
  151. data/scarpe-components/lib/scarpe/components/promises.rb +14 -14
  152. data/scarpe-components/lib/scarpe/components/segmented_file_loader.rb +36 -17
  153. data/scarpe-components/lib/scarpe/components/string_helpers.rb +10 -0
  154. data/scarpe-components/lib/scarpe/components/tiranti.rb +225 -0
  155. data/scarpe-components/lib/scarpe/components/unit_test_helpers.rb +45 -5
  156. data/scarpe-components/lib/scarpe/components/version.rb +2 -2
  157. data/scarpe-components/test/calzini/test_calzini_alert.rb +30 -0
  158. data/scarpe-components/test/calzini/test_calzini_art_drawables.rb +105 -0
  159. data/scarpe-components/test/calzini/test_calzini_button.rb +52 -0
  160. data/scarpe-components/test/calzini/test_calzini_misc.rb +115 -0
  161. data/scarpe-components/test/calzini/test_calzini_para.rb +37 -0
  162. data/scarpe-components/test/calzini/test_calzini_slots.rb +130 -0
  163. data/scarpe-components/test/calzini/test_calzini_text_drawables.rb +41 -0
  164. data/scarpe-components/test/mtr_data/exception.json +1 -0
  165. data/scarpe-components/test/mtr_data/fail_with_message.json +1 -0
  166. data/scarpe-components/test/mtr_data/skipped_no_message.json +1 -0
  167. data/scarpe-components/test/mtr_data/skipped_w_msg.json +1 -0
  168. data/scarpe-components/test/mtr_data/succeed_2_asserts.json +1 -0
  169. data/scarpe-components/test/test_dimensions.rb +26 -0
  170. data/scarpe-components/test/test_helper.rb +20 -0
  171. data/scarpe-components/test/test_html.rb +65 -0
  172. data/scarpe-components/test/test_minitest_result.rb +61 -0
  173. data/scarpe-components/test/test_promises.rb +5 -4
  174. data/scarpe-components/test/test_segmented_app_files.rb +8 -6
  175. data/scarpegen.rb +14 -14
  176. data/sig/scarpe.rbs +1 -1
  177. data/templates/basic_class_template.erb +13 -14
  178. data/templates/class_template_with_event_bind.erb +4 -4
  179. data/templates/class_template_with_shapes.erb +8 -17
  180. data/templates/example_template.erb +1 -1
  181. data/templates/module_template.erb +4 -4
  182. data/templates/webview_template.erb +3 -2
  183. metadata +113 -55
  184. data/examples/legacy/not_checked/shoes-contrib/elements/image-icon.rb +0 -3
  185. data/lacci/lib/shoes/widget.rb +0 -218
  186. data/lacci/lib/shoes/widgets/alert.rb +0 -19
  187. data/lacci/lib/shoes/widgets/arc.rb +0 -51
  188. data/lacci/lib/shoes/widgets/button.rb +0 -35
  189. data/lacci/lib/shoes/widgets/font.rb +0 -14
  190. data/lacci/lib/shoes/widgets/link.rb +0 -25
  191. data/lacci/lib/shoes/widgets/list_box.rb +0 -25
  192. data/lacci/lib/shoes/widgets/para.rb +0 -68
  193. data/lacci/lib/shoes/widgets/radio.rb +0 -35
  194. data/lacci/lib/shoes/widgets/star.rb +0 -44
  195. data/lacci/lib/shoes/widgets/subscription_item.rb +0 -60
  196. data/lacci/lib/shoes/widgets/text_widget.rb +0 -51
  197. data/lacci/lib/shoes/widgets/video.rb +0 -15
  198. data/lacci/lib/shoes/widgets.rb +0 -29
  199. data/lib/scarpe/wv/alert.rb +0 -66
  200. data/lib/scarpe/wv/background.rb +0 -27
  201. data/lib/scarpe/wv/border.rb +0 -24
  202. data/lib/scarpe/wv/control_interface_test.rb +0 -238
  203. data/lib/scarpe/wv/dimensions.rb +0 -22
  204. data/lib/scarpe/wv/font.rb +0 -36
  205. data/lib/scarpe/wv/html.rb +0 -108
  206. data/lib/scarpe/wv/spacing.rb +0 -41
  207. data/lib/scarpe/wv/text_widget.rb +0 -30
  208. /data/examples/legacy/not_checked/{expert → shoes-contrib/basic}/definr.rb +0 -0
  209. /data/examples/legacy/not_checked/{expert → shoes-contrib/basic}/funnies.rb +0 -0
  210. /data/examples/legacy/not_checked/shoes-contrib/{elements → basic}/list_box-select-class.rb +0 -0
  211. /data/examples/legacy/{not_checked/shoes-contrib/basic → working/simple}/basic-edit-box.rb +0 -0
  212. /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/basic-fps.rb +0 -0
  213. /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/border-cat.rb +0 -0
  214. /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/check-mate.rb +0 -0
  215. /data/examples/legacy/{not_checked/shoes-contrib/manipulation → working/simple}/clear-slot.rb +0 -0
  216. /data/examples/legacy/{not_checked/shoes-contrib/basic → working/simple}/clock.rb +0 -0
  217. /data/examples/legacy/{not_checked/shoes-contrib/basic → working/simple}/gradient-shoes.rb +0 -0
  218. /data/examples/legacy/{not_checked/shoes-contrib/basic → working/simple}/list_box-shape-report.rb +0 -0
  219. /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/list_box.rb +0 -0
  220. /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/phat-button.rb +0 -0
  221. /data/examples/legacy/{not_checked/shoes-contrib → working}/simple/simple-calc.rb +0 -0
  222. /data/examples/legacy/{not_checked/shoes-contrib/position → working/simple}/stack-width.rb +0 -0
  223. /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/width-introspec.rb +0 -0
@@ -0,0 +1,52 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "log"
4
+ # require "scarpe/components/modular_logger"
5
+
6
+ class Shoes
7
+ class Changelog
8
+ # include Shoes::Log
9
+
10
+ def initialize
11
+ #TODO : refer to https://github.com/scarpe-team/scarpe/pull/400
12
+ # and figure out how to use scarpe logger here without getting duplicate or nil error
13
+ # Shoes::Log.instance = Scarpe::Components::ModularLogImpl.new
14
+ # log_init("Changelog")
15
+ end
16
+
17
+ def get_latest_release_info
18
+ root_dir = File.dirname(__FILE__, 4) # this duplicates constants.rb, but how to share?
19
+
20
+ git_dir = "#{root_dir}/.git"
21
+ revision = nil
22
+ if File.exist?(git_dir)
23
+ revision = `git rev-parse HEAD`.chomp
24
+ end
25
+
26
+ changelog_file = "#{root_dir}/CHANGELOG.md"
27
+ if File.exist?(changelog_file)
28
+ changelog_content = File.read(changelog_file)
29
+ release_name_pattern = /^## \[(\d+\.\d+\.\d+)\] - (\d{4}-\d{2}-\d{2}) - (\w+)$/m
30
+ release_matches = changelog_content.scan(release_name_pattern)
31
+ latest_release = release_matches.max_by { |version, _date, _name| Gem::Version.new(version) }
32
+
33
+ if latest_release
34
+ #puts "Found release #{latest_release[0]} in CHANGELOG.md"
35
+ # @log.debug("Found release #{latest_release[0]} in CHANGELOG.md") # Logger isn't initialized yet
36
+ version_parts = latest_release[0].split(".").map(&:to_i)
37
+ rel_id = ("%02d%02d%02d" % version_parts).to_i
38
+
39
+ return({
40
+ RELEASE_NAME: latest_release[2],
41
+ RELEASE_BUILD_DATE: latest_release[1],
42
+ RELEASE_ID: rel_id,
43
+ REVISION: revision,
44
+ })
45
+ end
46
+ end
47
+
48
+ puts "No release found in CHANGELOG.md"
49
+ { RELEASE_NAME: nil, RELEASE_BUILD_DATE: nil, RELEASE_ID: nil, REVISION: revision }
50
+ end
51
+ end
52
+ end
@@ -1,7 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Shoes
3
+ class Shoes
4
4
  module Colors
5
+ extend self
6
+
5
7
  COLORS = {
6
8
  aliceblue: [240, 248, 255],
7
9
  antiquewhite: [250, 235, 215],
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Shoes
3
+ require_relative "changelog"
4
+ class Shoes
4
5
  module Constants
5
6
  def self.find_lib_dir
6
7
  begin
@@ -14,16 +15,33 @@ module Shoes
14
15
  [ENV["HOME"], ".shoes"],
15
16
  [Dir.tmpdir, "shoes"],
16
17
  ]
18
+
17
19
  top, file = homes.detect { |home_top, _| home_top && File.exist?(home_top) }
18
20
  File.join(top, file)
19
21
  end
20
22
 
23
+ # A temp dir for Shoes app files
21
24
  LIB_DIR = find_lib_dir
22
25
 
26
+ # the Shoes library dir
27
+ DIR = File.dirname(__FILE__, 4)
28
+
23
29
  # Math constants from Shoes3
24
30
  RAD2PI = 0.01745329251994329577
25
31
  TWO_PI = 6.28318530717958647693
26
32
  HALF_PI = 1.57079632679489661923
27
33
  PI = 3.14159265358979323846
34
+
35
+ # This should be set up by the Display Service when it loads
36
+ FONTS = []
28
37
  end
38
+
39
+ # Access and assign the release constants
40
+ changelog_instance = Shoes::Changelog.new
41
+ RELEASE_INFO = changelog_instance.get_latest_release_info
42
+ RELEASE_NAME = RELEASE_INFO[:RELEASE_NAME]
43
+ RELEASE_ID = RELEASE_INFO[:RELEASE_ID]
44
+ RELEASE_BUILD_DATE = RELEASE_INFO[:RELEASE_BUILD_DATE]
45
+ RELEASE_TYPE = "LOOSE_SHOES" # This isn't really a thing any more
46
+ REVISION = RELEASE_INFO[:REVISION]
29
47
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Lacci Shoes apps operate in multiple layers. A Shoes widget tree exists as fairly
4
- # plain, simple Ruby objects. And then a display-service widget tree integrates with
3
+ # Lacci Shoes apps operate in multiple layers. A Shoes drawable tree exists as fairly
4
+ # plain, simple Ruby objects. And then a display-service drawable tree integrates with
5
5
  # the display technology. This lets us use Ruby as our API while
6
6
  # not tying it too closely to the limitations of Webview, WASM, LibUI, etc.
7
7
  #
@@ -15,18 +15,18 @@
15
15
  #
16
16
  # ## Events
17
17
  #
18
- # Events are a lot of what tie the Shoes widgets and the display service together.
18
+ # Events are a lot of what tie the Shoes drawables and the display service together.
19
19
  #
20
- # Shoes widgets *expect* to operate in a fairly "hands off" mode where they record
20
+ # Shoes drawables *expect* to operate in a fairly "hands off" mode where they record
21
21
  # to an event queue to send to the display service, and the display service records
22
22
  # events to send back.
23
23
  #
24
24
  # When a Shoes handler takes an action (e.g. some_para.replace(),) the relevant
25
25
  # call will be dispatched as a :display event, to be sent to the display service.
26
26
  # And when a display-side event occurs (e.g. user pushes a button,) it will be
27
- # dispatched as a :shoes event, to be sent to the Shoes tree of widgets.
27
+ # dispatched as a :shoes event, to be sent to the Shoes tree of drawables.
28
28
  #
29
- module Shoes
29
+ class Shoes
30
30
  class DisplayService
31
31
  class << self
32
32
  # This is in the eigenclass/metaclass, *not* instances of DisplayService
@@ -128,22 +128,32 @@ module Shoes
128
128
 
129
129
  # These methods are an interface to DisplayService objects.
130
130
 
131
- def create_display_widget_for(widget_class_name, widget_id, properties)
131
+ def create_display_drawable_for(drawable_class_name, drawable_id, properties, is_widget:)
132
132
  raise "Override in DisplayService implementation!"
133
133
  end
134
134
 
135
- def set_widget_pairing(id, display_widget)
136
- @display_widget_for ||= {}
137
- @display_widget_for[id] = display_widget
135
+ def set_drawable_pairing(id, display_drawable)
136
+ if id.nil?
137
+ raise Shoes::Errors::BadLinkableIdError, "Linkable ID may not be nil!"
138
+ end
139
+
140
+ @display_drawable_for ||= {}
141
+ if @display_drawable_for[id]
142
+ raise Shoes::Errors::DuplicateCreateDrawableError, "There is already a drawable for #{id.inspect}! Not setting a new one."
143
+ end
144
+
145
+ @display_drawable_for[id] = display_drawable
146
+ nil
138
147
  end
139
148
 
140
- def query_display_widget_for(id, nil_ok: false)
141
- display_widget = @display_widget_for[id]
142
- unless display_widget || nil_ok
143
- raise "Could not find display widget for linkable ID #{id.inspect}!"
149
+ def query_display_drawable_for(id, nil_ok: false)
150
+ @display_drawable_for ||= {}
151
+ display_drawable = @display_drawable_for[id]
152
+ unless display_drawable || nil_ok
153
+ raise "Could not find display drawable for linkable ID #{id.inspect}!"
144
154
  end
145
155
 
146
- display_widget
156
+ display_drawable
147
157
  end
148
158
 
149
159
  def destroy
@@ -163,6 +173,8 @@ module Shoes
163
173
 
164
174
  def initialize(linkable_id: object_id)
165
175
  @linkable_id = linkable_id
176
+ @subscriptions = {}
177
+ @display_drawable_for ||= {}
166
178
  end
167
179
 
168
180
  def send_self_event(*args, event_name:, **kwargs)
@@ -174,11 +186,22 @@ module Shoes
174
186
  end
175
187
 
176
188
  def bind_shoes_event(event_name:, target: nil, &handler)
177
- DisplayService.subscribe_to_event(event_name, target, &handler)
189
+ sub = DisplayService.subscribe_to_event(event_name, target, &handler)
190
+ @subscriptions[sub] = true
191
+ sub
178
192
  end
179
193
 
180
194
  def unsub_shoes_event(unsub_id)
195
+ unless @subscriptions[unsub_id]
196
+ $stderr.puts "Unsubscribing from event that isn't in subscriptions! #{unsub_id.inspect}"
197
+ end
181
198
  DisplayService.unsub_from_events(unsub_id)
199
+ @subscriptions.delete unsub_id
200
+ end
201
+
202
+ def unsub_all_shoes_events
203
+ @subscriptions.keys.each { |k| DisplayService.unsub_from_events(k) }
204
+ @subscriptions.clear
182
205
  end
183
206
  end
184
207
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Shoes
4
- class Widget
3
+ class Shoes
4
+ class Drawable
5
5
  class ResponseWrapper
6
6
  attr_reader :response
7
7
 
@@ -0,0 +1,380 @@
1
+ # frozen_string_literal: true
2
+
3
+ class Shoes
4
+ # Shoes::Drawable
5
+ #
6
+ # This is the display-service portable Shoes Drawable interface. Visible Shoes
7
+ # drawables like buttons inherit from this. Compound drawables made of multiple
8
+ # different smaller Drawables inherit from it in their various apps or libraries.
9
+ # The Shoes Drawable helps build a Shoes-side drawable tree, with parents and
10
+ # children. Any API that applies to all drawables (e.g. remove) should be
11
+ # defined here.
12
+ #
13
+ class Drawable < Shoes::Linkable
14
+ include Shoes::Log
15
+ include Shoes::Colors
16
+
17
+ # All Drawables have these so they go in Shoes::Drawable and are inherited
18
+ @shoes_events = ["parent", "destroy", "prop_change"]
19
+
20
+ class << self
21
+ attr_accessor :drawable_classes
22
+ attr_accessor :drawable_default_styles
23
+ attr_accessor :widget_classes
24
+
25
+ def inherited(subclass)
26
+ Shoes::Drawable.drawable_classes ||= []
27
+ Shoes::Drawable.drawable_classes << subclass
28
+
29
+ Shoes::Drawable.drawable_default_styles ||= {}
30
+ Shoes::Drawable.drawable_default_styles[subclass] = {}
31
+
32
+ Shoes::Drawable.widget_classes ||= []
33
+ if subclass < Shoes::Widget
34
+ Shoes::Drawable.widget_classes << subclass.name
35
+ end
36
+
37
+ super
38
+ end
39
+
40
+ def dsl_name
41
+ n = name.split("::").last.chomp("Drawable")
42
+ n.gsub(/(.)([A-Z])/, '\1_\2').downcase
43
+ end
44
+
45
+ def drawable_class_by_name(name)
46
+ drawable_classes.detect { |k| k.dsl_name == name.to_s }
47
+ end
48
+
49
+ def is_widget_class?(name)
50
+ !!Shoes::Drawable.widget_classes.intersect?([name.to_s])
51
+ end
52
+
53
+ def validate_as(prop_name, value)
54
+ prop_name = prop_name.to_s
55
+ hashes = shoes_style_hashes
56
+
57
+ h = hashes.detect { |hash| hash[:name] == prop_name }
58
+ raise(Shoes::Errors::NoSuchStyleError, "Can't find property #{prop_name.inspect} in #{self} property list: #{hashes.inspect}!") unless h
59
+
60
+ return value if h[:validator].nil?
61
+
62
+ h[:validator].call(value)
63
+ end
64
+
65
+ # Return a list of Shoes events for this class.
66
+ #
67
+ # @return Array[String] the list of event names
68
+ def get_shoes_events
69
+ if @shoes_events.nil?
70
+ raise UnknownEventsForClass, "Drawable type #{self.class} hasn't defined its list of Shoes events!"
71
+ end
72
+
73
+ @shoes_events
74
+ end
75
+
76
+ # Set the list of Shoes event names that are allowed for this class.
77
+ #
78
+ # @param args [Array] an array of event names, which will be coerced to Strings
79
+ # @return [void]
80
+ def shoes_events(*args)
81
+ @shoes_events ||= args.map(&:to_s) + self.superclass.get_shoes_events
82
+ end
83
+
84
+ # Assign a new Shoes Drawable ID number, starting from 1.
85
+ # This allows non-overlapping small integer IDs for Shoes
86
+ # linkable IDs - the number part of making it clear what
87
+ # widget you're talking about.
88
+ def allocate_drawable_id
89
+ @drawable_id_counter ||= 0
90
+ @drawable_id_counter += 1
91
+ @drawable_id_counter
92
+ end
93
+
94
+ def register_drawable_id(id, drawable)
95
+ @drawables_by_id ||= {}
96
+ @drawables_by_id[id] = drawable
97
+ end
98
+
99
+ def unregister_drawable_id(id)
100
+ @drawables_by_id ||= {}
101
+ @drawables_by_id.delete(id)
102
+ end
103
+
104
+ def drawable_by_id(id, none_ok: false)
105
+ val = @drawables_by_id[id]
106
+ unless val || none_ok
107
+ raise "No Drawable Found! #{@drawables_by_id.inspect}"
108
+ end
109
+
110
+ val
111
+ end
112
+
113
+ private
114
+
115
+ def linkable_properties
116
+ @linkable_properties ||= []
117
+ end
118
+
119
+ def linkable_properties_hash
120
+ @linkable_properties_hash ||= {}
121
+ end
122
+
123
+ public
124
+
125
+ # Shoes styles in Shoes Linkables are automatically sync'd with the display side objects.
126
+ # If a block is passed to shoes_style, that's the validation for the property. It should
127
+ # convert a given value to a valid value for the property or throw an exception.
128
+ def shoes_style(name, &validator)
129
+ name = name.to_s
130
+
131
+ return if linkable_properties_hash[name]
132
+
133
+ linkable_properties << { name: name, validator: }
134
+ linkable_properties_hash[name] = true
135
+ end
136
+
137
+ # Add these names as Shoes styles
138
+ def shoes_styles(*names)
139
+ names.each { |n| shoes_style(n) }
140
+ end
141
+
142
+ def shoes_style_names
143
+ parent_prop_names = self != Shoes::Drawable ? self.superclass.shoes_style_names : []
144
+
145
+ parent_prop_names | linkable_properties.map { |prop| prop[:name] }
146
+ end
147
+
148
+ def shoes_style_hashes
149
+ parent_hashes = self != Shoes::Drawable ? self.superclass.shoes_style_hashes : []
150
+
151
+ parent_hashes + linkable_properties
152
+ end
153
+
154
+ def shoes_style_name?(name)
155
+ linkable_properties_hash[name.to_s] ||
156
+ (self != Shoes::Drawable && superclass.shoes_style_name?(name))
157
+ end
158
+ end
159
+
160
+ # Shoes uses a "hidden" style property for hide/show
161
+ shoes_style :hidden
162
+
163
+ attr_reader :debug_id
164
+
165
+ def initialize(*args, **kwargs)
166
+ log_init("Shoes::#{self.class.name}")
167
+
168
+ default_styles = Shoes::Drawable.drawable_default_styles[self.class]
169
+
170
+ self.class.shoes_style_names.each do |prop|
171
+ prop_sym = prop.to_sym
172
+ if kwargs.key?(prop_sym)
173
+ val = self.class.validate_as(prop, kwargs[prop_sym])
174
+ instance_variable_set("@" + prop, val)
175
+ elsif default_styles.key?(prop_sym)
176
+ val = self.class.validate_as(prop, default_styles[prop_sym])
177
+ instance_variable_set("@" + prop, val)
178
+ end
179
+ end
180
+
181
+ super(linkable_id: Shoes::Drawable.allocate_drawable_id)
182
+ Shoes::Drawable.register_drawable_id(self.linkable_id, self)
183
+
184
+ generate_debug_id
185
+ end
186
+
187
+ # Calling stack.app or drawable.app will execute the block
188
+ # with the Shoes::App as self, and with that stack or
189
+ # flow as the current slot.
190
+ #
191
+ # @incompatibility In Shoes Classic this is the only way
192
+ # to change self, while Scarpe will also change self
193
+ # with the other Slot Manipulation methods: #clear,
194
+ # #append, #prepend, #before and #after.
195
+ #
196
+ # @return [Shoes::App] the Shoes app
197
+ # @yield the block to call with the Shoes App as self
198
+ def app(&block)
199
+ Shoes::App.instance.with_slot(self, &block) if block_given?
200
+ Shoes::App.instance
201
+ end
202
+
203
+ private
204
+
205
+ def generate_debug_id
206
+ cl = caller_locations(3)
207
+ da = cl.detect { |loc| !loc.path.include?("lacci/lib/shoes") }
208
+ @drawable_defined_at = "#{File.basename(da.path)}:#{da.lineno}"
209
+
210
+ class_name = self.class.name.split("::")[-1]
211
+
212
+ @debug_id = "#{class_name}##{@linkable_id}(#{@drawable_defined_at})"
213
+ end
214
+
215
+ public
216
+
217
+ def inspect
218
+ "#<#{debug_id} " +
219
+ " @parent=#{@parent ? @parent.debug_id : "(none)"} " +
220
+ "@children=#{@children ? @children.map(&:debug_id) : "(none)"} properties=#{shoes_style_values.inspect}>"
221
+ end
222
+
223
+ private
224
+
225
+ def validate_event_name(event_name)
226
+ unless self.class.get_shoes_events.include?(event_name.to_s)
227
+ raise Shoes::UnregisteredShoesEvent, "Drawable #{self.inspect} tried to bind Shoes event #{event_name}, which is not in #{evetns.inspect}!"
228
+ end
229
+ end
230
+
231
+ def bind_self_event(event_name, &block)
232
+ raise(Shoes::Errors::NoLinkableIdError, "Drawable has no linkable_id! #{inspect}") unless linkable_id
233
+
234
+ validate_event_name(event_name)
235
+
236
+ bind_shoes_event(event_name: event_name, target: linkable_id, &block)
237
+ end
238
+
239
+ def bind_no_target_event(event_name, &block)
240
+ validate_event_name(event_name)
241
+
242
+ bind_shoes_event(event_name:, &block)
243
+ end
244
+
245
+ public
246
+
247
+ def event(event_name, *args, **kwargs)
248
+ validate_event_name(event_name)
249
+
250
+ send_shoes_event(*args, **kwargs, event_name:, target: linkable_id)
251
+ end
252
+
253
+ def shoes_style_values
254
+ all_property_names = self.class.shoes_style_names
255
+
256
+ properties = {}
257
+ all_property_names.each do |prop|
258
+ properties[prop] = instance_variable_get("@" + prop)
259
+ end
260
+ properties["shoes_linkable_id"] = self.linkable_id
261
+ properties
262
+ end
263
+
264
+ def style(*args, **kwargs)
265
+ if args.empty? && kwargs.empty?
266
+ # Just called as .style()
267
+ shoes_style_values
268
+ elsif args.empty?
269
+ # This is called to set one or more Shoes styles
270
+ prop_names = self.class.shoes_style_names
271
+ unknown_styles = kwargs.keys.select { |k| !prop_names.include?(k.to_s) }
272
+ unless unknown_styles.empty?
273
+ raise Shoes::Errors::NoSuchStyleError, "Unknown styles for drawable type #{self.class.name}: #{unknown_styles.join(", ")}"
274
+ end
275
+
276
+ kwargs.each do |name, val|
277
+ instance_variable_set("@#{name}", val)
278
+ end
279
+ elsif args.length == 1 && args[0] < Shoes::Drawable
280
+ # Shoes supports calling .style with a Shoes class, e.g. .style(Shoes::Button, displace_left: 5)
281
+ kwargs.each do |name, val|
282
+ Shoes::Drawable.drawable_default_styles[args[0]][name.to_sym] = val
283
+ end
284
+ else
285
+ raise Shoes::Errors::InvalidAttributeValueError, "Unexpected arguments to style! args: #{args.inspect}, keyword args: #{kwargs.inspect}"
286
+ end
287
+ end
288
+
289
+ private
290
+
291
+ def create_display_drawable
292
+ klass_name = self.class.name.delete_prefix("Scarpe::").delete_prefix("Shoes::")
293
+
294
+ is_widget = Shoes::Drawable.is_widget_class?(klass_name)
295
+
296
+ # Should we send an event so this can be discovered from someplace other than
297
+ # the DisplayService?
298
+ ::Shoes::DisplayService.display_service.create_display_drawable_for(klass_name, self.linkable_id, shoes_style_values, is_widget:)
299
+ end
300
+
301
+ public
302
+
303
+ attr_reader :parent
304
+ attr_reader :destroyed
305
+
306
+ def set_parent(new_parent)
307
+ @parent&.remove_child(self)
308
+ new_parent&.add_child(self)
309
+ @parent = new_parent
310
+ send_shoes_event(new_parent.linkable_id, event_name: "parent", target: linkable_id)
311
+ end
312
+
313
+ # Removes the element from the Shoes::Drawable tree and removes all event subscriptions
314
+ def destroy
315
+ @parent&.remove_child(self)
316
+ @parent = nil
317
+ @destroyed = true
318
+ unsub_all_shoes_events
319
+ send_shoes_event(event_name: "destroy", target: linkable_id)
320
+ Shoes::Drawable.unregister_drawable_id(linkable_id)
321
+ end
322
+ alias_method :remove, :destroy
323
+
324
+ # Hide the drawable.
325
+ def hide
326
+ self.hidden = true
327
+ end
328
+
329
+ # Show the drawable.
330
+ def show
331
+ self.hidden = false
332
+ end
333
+
334
+ # Hide the drawable if it is currently shown. Show it if it is currently hidden.
335
+ def toggle
336
+ self.hidden = !self.hidden
337
+ end
338
+
339
+ # We use method_missing to auto-create Shoes style getters and setters.
340
+ def method_missing(name, *args, **kwargs, &block)
341
+ name_s = name.to_s
342
+
343
+ if name_s[-1] == "="
344
+ prop_name = name_s[0..-2]
345
+ if self.class.shoes_style_name?(prop_name)
346
+ self.class.define_method(name) do |new_value|
347
+ raise(Shoes::Errors::NoLinkableIdError, "Trying to set Shoes styles in an object with no linkable ID! #{inspect}") unless linkable_id
348
+
349
+ new_value = self.class.validate_as(prop_name, new_value)
350
+ instance_variable_set("@" + prop_name, new_value)
351
+ send_shoes_event({ prop_name => new_value }, event_name: "prop_change", target: linkable_id)
352
+ end
353
+
354
+ return self.send(name, *args, **kwargs, &block)
355
+ end
356
+ end
357
+
358
+ if self.class.shoes_style_name?(name_s)
359
+ self.class.define_method(name) do
360
+ raise(Shoes::Errors::NoLinkableIdError, "Trying to get Shoes styles in an object with no linkable ID! #{inspect}") unless linkable_id
361
+
362
+ instance_variable_get("@" + name_s)
363
+ end
364
+
365
+ return self.send(name, *args, **kwargs, &block)
366
+ end
367
+
368
+ super(name, *args, **kwargs, &block)
369
+ end
370
+
371
+ def respond_to_missing?(name, include_private = false)
372
+ name_s = name.to_s
373
+ return true if self.class.shoes_style_name?(name_s)
374
+ return true if self.class.shoes_style_name?(name_s[0..-2]) && name_s[-1] == "="
375
+ return true if Drawable.drawable_class_by_name(name_s)
376
+
377
+ super
378
+ end
379
+ end
380
+ end
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ class Shoes
4
+ class Arc < Shoes::Drawable
5
+ shoes_style :draw_context
6
+ shoes_events # No Arc-specific events yet
7
+
8
+ [:left, :top, :width, :height].each do |prop|
9
+ shoes_style(prop) { |val| convert_to_integer(val, prop) }
10
+ end
11
+
12
+ [:angle1, :angle2].each do |prop|
13
+ shoes_style(prop) { |val| convert_to_float(val, prop) }
14
+ end
15
+
16
+ def initialize(*args)
17
+ @draw_context = Shoes::App.instance.current_draw_context
18
+
19
+ super
20
+ self.left, self.top, self.width, self.height, self.angle1, self.angle2 = args
21
+
22
+ create_display_drawable
23
+ end
24
+
25
+ def self.convert_to_integer(value, attribute_name)
26
+ begin
27
+ value = Integer(value)
28
+ raise Shoes::Errors::InvalidAttributeValueError, "Negative number '#{value}' not allowed for attribute '#{attribute_name}'" if value < 0
29
+
30
+ value
31
+ rescue ArgumentError
32
+ error_message = "Invalid value '#{value}' provided for attribute '#{attribute_name}'. The value should be a number."
33
+ raise Shoes::Errors::InvalidAttributeValueError, error_message
34
+ end
35
+ end
36
+
37
+ def self.convert_to_float(value, attribute_name)
38
+ begin
39
+ value = Float(value)
40
+ raise Shoes::Errors::InvalidAttributeValueError, "Negative number '#{value}' not allowed for attribute '#{attribute_name}'" if value < 0
41
+
42
+ value
43
+ rescue ArgumentError
44
+ error_message = "Invalid value '#{value}' provided for attribute '#{attribute_name}'. The value should be a number."
45
+ raise Shoes::Errors::InvalidAttributeValueError, error_message
46
+ end
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+
3
+ class Shoes
4
+ class Arrow < Shoes::Drawable
5
+ shoes_style :draw_context
6
+ shoes_events # No Arrow-specific events yet
7
+
8
+ [:left, :top, :width].each do |prop|
9
+ shoes_style(prop) { |val| val.is_a?(Hash) ? val : convert_to_integer(val, prop) }
10
+ end
11
+
12
+ def initialize(*args)
13
+ @draw_context = Shoes::App.instance.current_draw_context
14
+
15
+ super
16
+
17
+ if args.length == 1 && args[0].is_a?(Hash)
18
+ options = args[0]
19
+ self.left = options[:left]
20
+ self.top = options[:top]
21
+ self.width = options[:width]
22
+ else
23
+ self.left, self.top, self.width = args
24
+ end
25
+
26
+ create_display_drawable
27
+ end
28
+
29
+ def self.convert_to_integer(value, attribute_name)
30
+ begin
31
+ value = Integer(value)
32
+ raise Shoes::Errors::InvalidAttributeValueError, "Negative number '#{value}' not allowed for attribute '#{attribute_name}'" if value < 0
33
+
34
+ value
35
+ rescue ArgumentError
36
+ error_message = "Invalid value '#{value}' provided for attribute '#{attribute_name}'. The value should be a number."
37
+ raise Shoes::Errors::InvalidAttributeValueError, error_message
38
+ end
39
+ end
40
+ end
41
+ end