rgame 0.2.0 → 0.3.1

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.
Files changed (253) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +144 -1
  3. data/README.md +67 -65
  4. data/docs/api/README.md +86 -82
  5. data/docs/api/app.md +125 -68
  6. data/docs/api/assets.md +203 -165
  7. data/docs/api/audio.md +130 -89
  8. data/docs/api/cli.md +259 -0
  9. data/docs/api/components.md +1032 -265
  10. data/docs/api/drawing.md +160 -160
  11. data/docs/api/examples.md +263 -0
  12. data/docs/api/game.md +149 -50
  13. data/docs/api/images.md +39 -39
  14. data/docs/api/input.md +226 -148
  15. data/docs/api/internals.md +241 -62
  16. data/docs/api/localization.md +285 -0
  17. data/docs/api/scene_graph.md +397 -244
  18. data/docs/api/signals.md +81 -76
  19. data/docs/api/systems.md +186 -73
  20. data/docs/api/text.md +58 -41
  21. data/docs/api/tile_maps.md +237 -0
  22. data/docs/api/toolbox.md +395 -146
  23. data/docs/api/ui.md +883 -54
  24. data/docs/api/values.md +216 -33
  25. data/examples/assets/README.md +322 -0
  26. data/examples/assets/blip.ogg +0 -0
  27. data/examples/assets/glyphs.json +5 -0
  28. data/examples/assets/glyphs.png +0 -0
  29. data/examples/assets/hero.json +12 -0
  30. data/examples/assets/hero.png +0 -0
  31. data/examples/assets/icons.json +13 -0
  32. data/examples/assets/icons.png +0 -0
  33. data/examples/assets/music.ogg +0 -0
  34. data/examples/assets/skills.json +10 -0
  35. data/examples/assets/skills.png +0 -0
  36. data/examples/assets/tileset.png +0 -0
  37. data/examples/assets/tileset.tsx +65 -0
  38. data/examples/assets/town.tmx +26 -0
  39. data/examples/assets/ui.json +11 -0
  40. data/examples/assets/ui.png +0 -0
  41. data/examples/collision/locales/en.yml +8 -0
  42. data/examples/collision/main.rb +316 -0
  43. data/examples/collision_tiles/locales/en.yml +9 -0
  44. data/examples/collision_tiles/main.rb +274 -0
  45. data/examples/fullscreen/locales/en.yml +10 -0
  46. data/examples/fullscreen/main.rb +216 -0
  47. data/examples/game_menu/locales/en.yml +8 -0
  48. data/examples/game_menu/main.rb +170 -0
  49. data/examples/input_glyphs/locales/en.yml +14 -0
  50. data/examples/input_glyphs/main.rb +213 -0
  51. data/examples/jump_topdown/locales/en.yml +9 -0
  52. data/examples/jump_topdown/main.rb +178 -0
  53. data/examples/localization/locales/de.yml +12 -0
  54. data/examples/localization/locales/en.yml +13 -0
  55. data/examples/localization/main.rb +158 -0
  56. data/examples/menu_navigation/locales/en.yml +23 -0
  57. data/examples/menu_navigation/main.rb +365 -0
  58. data/examples/music/locales/en.yml +7 -0
  59. data/examples/music/main.rb +134 -0
  60. data/examples/pathfinding/locales/en.yml +17 -0
  61. data/examples/pathfinding/main.rb +298 -0
  62. data/examples/pooling/locales/en.yml +7 -0
  63. data/examples/pooling/main.rb +259 -0
  64. data/examples/quick_wheel/locales/en.yml +16 -0
  65. data/examples/quick_wheel/main.rb +184 -0
  66. data/examples/radial_menu/locales/en.yml +16 -0
  67. data/examples/radial_menu/main.rb +184 -0
  68. data/examples/save_load/locales/en.yml +11 -0
  69. data/examples/save_load/main.rb +207 -0
  70. data/examples/save_load_ids/locales/en.yml +11 -0
  71. data/examples/save_load_ids/main.rb +322 -0
  72. data/examples/scroll_map/locales/en.yml +4 -0
  73. data/examples/scroll_map/main.rb +140 -0
  74. data/examples/signals/locales/en.yml +6 -0
  75. data/examples/signals/main.rb +278 -0
  76. data/examples/skill_bar/locales/en.yml +14 -0
  77. data/examples/skill_bar/main.rb +159 -0
  78. data/examples/sound/locales/en.yml +6 -0
  79. data/examples/sound/main.rb +122 -0
  80. data/examples/split_screen/locales/en.yml +9 -0
  81. data/examples/split_screen/main.rb +304 -0
  82. data/examples/sprite/locales/en.yml +8 -0
  83. data/examples/sprite/main.rb +180 -0
  84. data/examples/timer/locales/en.yml +12 -0
  85. data/examples/timer/main.rb +273 -0
  86. data/examples/velocity/locales/en.yml +6 -0
  87. data/examples/velocity/main.rb +196 -0
  88. data/examples/walk/locales/en.yml +4 -0
  89. data/examples/walk/main.rb +99 -0
  90. data/exe/rgame +9 -0
  91. data/ext/rgame_core/app/app.c +33 -3
  92. data/ext/rgame_core/app/locale.c +67 -0
  93. data/ext/rgame_core/app/locale.h +28 -0
  94. data/ext/rgame_core/audio/audio.c +39 -2
  95. data/ext/rgame_core/example.rb +0 -49
  96. data/ext/rgame_core/extconf.rb +0 -125
  97. data/ext/rgame_core/include/rgame/core.h +38 -2
  98. data/ext/rgame_core/ruby/audio_ext.c +10 -5
  99. data/ext/rgame_core/ruby/core_ext.c +30 -7
  100. data/ext/rgame_core/ruby/core_ext.h +3 -0
  101. data/ext/rgame_core/ruby/locale_ext.c +44 -0
  102. data/ext/rgame_core/ruby/recording_ext.c +1 -1
  103. data/ext/rgame_core/ruby/renderer_ext.c +20 -20
  104. data/ext/rgame_util/extconf.rb +2 -20
  105. data/ext/rgame_util/route_search.c +305 -0
  106. data/ext/rgame_util/route_search.h +86 -0
  107. data/ext/rgame_util/route_search_ext.c +150 -0
  108. data/ext/rgame_util/solid_grid.c +58 -0
  109. data/ext/rgame_util/solid_grid.h +49 -0
  110. data/ext/rgame_util/solid_grid_ext.c +161 -0
  111. data/ext/rgame_util/tile_sweep.c +164 -0
  112. data/ext/rgame_util/tile_sweep.h +62 -0
  113. data/ext/rgame_util/tile_sweep_ext.c +155 -0
  114. data/ext/rgame_util/util_ext.c +3 -0
  115. data/ext/rgame_util/util_ext.h +15 -0
  116. data/lib/rgame/boot.rb +0 -10
  117. data/lib/rgame/cli/new_project.rb +139 -0
  118. data/lib/rgame/cli/templates/Gemfile.tt +23 -0
  119. data/lib/rgame/cli/templates/README.md.tt +93 -0
  120. data/lib/rgame/cli/templates/Rakefile.tt +9 -0
  121. data/lib/rgame/cli/templates/assets/locales/en.yml.tt +10 -0
  122. data/lib/rgame/cli/templates/game.rb.tt +23 -0
  123. data/lib/rgame/cli/templates/gitignore.tt +12 -0
  124. data/lib/rgame/cli/templates/main.rb.tt +11 -0
  125. data/lib/rgame/cli/templates/nodes/root.rb.tt +24 -0
  126. data/lib/rgame/cli/templates/rspec.tt +2 -0
  127. data/lib/rgame/cli/templates/rubocop.yml.tt +75 -0
  128. data/lib/rgame/cli/templates/ruby-version.tt +1 -0
  129. data/lib/rgame/cli/templates/spec/locales_spec.rb.tt +18 -0
  130. data/lib/rgame/cli/templates/spec/nodes/root_spec.rb.tt +18 -0
  131. data/lib/rgame/cli/templates/spec/spec_helper.rb.tt +37 -0
  132. data/lib/rgame/cli.rb +66 -0
  133. data/lib/rgame/core/app.rb +6 -44
  134. data/lib/rgame/core/asset_manager.rb +13 -31
  135. data/lib/rgame/core/audio.rb +37 -16
  136. data/lib/rgame/core/font.rb +0 -3
  137. data/lib/rgame/core/locale.rb +22 -0
  138. data/lib/rgame/core/nine_slice.rb +0 -21
  139. data/lib/rgame/core/renderer.rb +6 -63
  140. data/lib/rgame/core/sprite_sheet.rb +0 -3
  141. data/lib/rgame/core/tile_map_renderer.rb +2 -19
  142. data/lib/rgame/core/ui_atlas.rb +28 -13
  143. data/lib/rgame/core.rb +1 -8
  144. data/lib/rgame/engine/actor_blockers.rb +131 -0
  145. data/lib/rgame/engine/animation_set.rb +1 -0
  146. data/lib/rgame/engine/audio_director.rb +36 -6
  147. data/lib/rgame/engine/bounds_blockers.rb +74 -0
  148. data/lib/rgame/engine/camera.rb +3 -3
  149. data/lib/rgame/engine/circle_collider.rb +4 -2
  150. data/lib/rgame/engine/collision_box.rb +26 -1
  151. data/lib/rgame/engine/collision_system.rb +110 -22
  152. data/lib/rgame/engine/component.rb +34 -10
  153. data/lib/rgame/engine/components/action_trigger.rb +0 -1
  154. data/lib/rgame/engine/components/animated_sprite.rb +27 -25
  155. data/lib/rgame/engine/components/box_collider.rb +99 -0
  156. data/lib/rgame/engine/components/camera_follow.rb +6 -5
  157. data/lib/rgame/engine/components/character_body.rb +20 -61
  158. data/lib/rgame/engine/components/circle_collider.rb +47 -11
  159. data/lib/rgame/engine/components/collision_world.rb +159 -31
  160. data/lib/rgame/engine/components/despawn_offscreen.rb +24 -8
  161. data/lib/rgame/engine/components/feet_collider.rb +61 -0
  162. data/lib/rgame/engine/components/hop.rb +76 -0
  163. data/lib/rgame/engine/components/identity.rb +73 -0
  164. data/lib/rgame/engine/components/mover.rb +285 -0
  165. data/lib/rgame/engine/components/navigator.rb +145 -0
  166. data/lib/rgame/engine/components/path_follow.rb +123 -31
  167. data/lib/rgame/engine/components/player_controller.rb +5 -2
  168. data/lib/rgame/engine/components/pool.rb +1 -1
  169. data/lib/rgame/engine/components/screen_wrap.rb +33 -11
  170. data/lib/rgame/engine/components/sprite.rb +12 -6
  171. data/lib/rgame/engine/components/targeting.rb +9 -11
  172. data/lib/rgame/engine/components/thrust_controller.rb +1 -1
  173. data/lib/rgame/engine/components/tile_world.rb +41 -13
  174. data/lib/rgame/engine/components/timer.rb +1 -1
  175. data/lib/rgame/engine/components/velocity.rb +23 -7
  176. data/lib/rgame/engine/components/wander_controller.rb +6 -2
  177. data/lib/rgame/engine/components/world.rb +133 -0
  178. data/lib/rgame/engine/contact_set.rb +74 -0
  179. data/lib/rgame/engine/culling.rb +4 -6
  180. data/lib/rgame/engine/debug_overlay.rb +5 -11
  181. data/lib/rgame/engine/i18n/plural.rb +45 -0
  182. data/lib/rgame/engine/i18n/plural_rules.rb +82 -0
  183. data/lib/rgame/engine/i18n/template.rb +59 -0
  184. data/lib/rgame/engine/i18n.rb +276 -51
  185. data/lib/rgame/engine/input/action_mapper.rb +0 -26
  186. data/lib/rgame/engine/input/actions.rb +2 -8
  187. data/lib/rgame/engine/input/input_map.rb +39 -21
  188. data/lib/rgame/engine/nav_grid.rb +87 -0
  189. data/lib/rgame/engine/node2d.rb +248 -133
  190. data/lib/rgame/engine/path.rb +4 -6
  191. data/lib/rgame/engine/players.rb +6 -13
  192. data/lib/rgame/engine/presentation.rb +171 -0
  193. data/lib/rgame/engine/scene/scene_stack.rb +4 -4
  194. data/lib/rgame/engine/sealed_privates.rb +54 -0
  195. data/lib/rgame/engine/spatial_hash.rb +51 -19
  196. data/lib/rgame/engine/text.rb +194 -0
  197. data/lib/rgame/engine/tile_blockers.rb +63 -0
  198. data/lib/rgame/engine/tile_map.rb +3 -5
  199. data/lib/rgame/engine/tile_map_layer.rb +0 -2
  200. data/lib/rgame/engine/tileset.rb +2 -4
  201. data/lib/rgame/engine/timer.rb +2 -2
  202. data/lib/rgame/engine/ui/button.rb +248 -0
  203. data/lib/rgame/engine/ui/column.rb +20 -0
  204. data/lib/rgame/engine/ui/icon_button.rb +93 -0
  205. data/lib/rgame/engine/ui/menu.rb +246 -71
  206. data/lib/rgame/engine/ui/navigation.rb +57 -0
  207. data/lib/rgame/engine/ui/nine_slice_style.rb +50 -0
  208. data/lib/rgame/engine/ui/option_button.rb +163 -0
  209. data/lib/rgame/engine/ui/panel_button.rb +32 -0
  210. data/lib/rgame/engine/ui/panel_menu.rb +36 -0
  211. data/lib/rgame/engine/ui/pointing.rb +146 -0
  212. data/lib/rgame/engine/ui/radial_menu.rb +85 -0
  213. data/lib/rgame/engine/ui/ring.rb +55 -0
  214. data/lib/rgame/engine/ui/row.rb +21 -0
  215. data/lib/rgame/engine/ui/shape_style.rb +102 -0
  216. data/lib/rgame/engine/ui/stack.rb +58 -0
  217. data/lib/rgame/engine/ui/stepping.rb +93 -0
  218. data/lib/rgame/engine/ui/text_button.rb +59 -0
  219. data/lib/rgame/engine/viewports.rb +2 -5
  220. data/lib/rgame/engine/world_view.rb +5 -4
  221. data/lib/rgame/engine.rb +31 -25
  222. data/lib/rgame/game.rb +99 -27
  223. data/lib/rgame/rubocop/cop/game/draw_in_local_space.rb +103 -0
  224. data/lib/rgame/rubocop/cop/game/hot_path.rb +36 -0
  225. data/lib/rgame/rubocop/cop/game/layer_boundary.rb +43 -0
  226. data/lib/rgame/rubocop/cop/game/no_core_in_engine_layer.rb +100 -0
  227. data/lib/rgame/rubocop/cop/game/no_engine_in_core_layer.rb +84 -0
  228. data/lib/rgame/rubocop/cop/game/no_interpolation_in_hot_path.rb +50 -0
  229. data/lib/rgame/rubocop/cop/game/no_literal_text.rb +41 -0
  230. data/lib/rgame/rubocop/cop/game/no_needless_allocation.rb +112 -0
  231. data/lib/rgame/rubocop/default.yml +39 -0
  232. data/lib/rgame/rubocop/plugin.rb +45 -0
  233. data/lib/rgame/rubocop.rb +11 -0
  234. data/lib/rgame/util/color.rb +20 -24
  235. data/lib/rgame/util/controls.rb +14 -28
  236. data/lib/rgame/util/route_search.rb +27 -0
  237. data/lib/rgame/util/save_file.rb +107 -0
  238. data/lib/rgame/util/solid_grid.rb +37 -0
  239. data/lib/rgame/util/tensor.rb +0 -9
  240. data/lib/rgame/util/tile_sweep.rb +36 -0
  241. data/lib/rgame/util/z.rb +4 -14
  242. data/lib/rgame/util.rb +4 -3
  243. data/lib/rgame/version.rb +1 -1
  244. data/lib/rgame.rb +0 -15
  245. metadata +167 -12
  246. data/lib/rgame/engine/actor.rb +0 -53
  247. data/lib/rgame/engine/body.rb +0 -49
  248. data/lib/rgame/engine/cached_label.rb +0 -33
  249. data/lib/rgame/engine/input/player_controller.rb +0 -14
  250. data/lib/rgame/engine/matrix.rb +0 -32
  251. data/lib/rgame/engine/resettable.rb +0 -67
  252. data/lib/rgame/engine/tile_collision.rb +0 -78
  253. data/lib/rgame/engine/ui/menu_item.rb +0 -84
data/docs/api/images.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Images
2
2
 
3
3
  `RGame::Core::Image` is a picture on the GPU. Loading one decodes a PNG and
4
- uploads it; everything after that — subimages, tiles, whole sprite sheets is a
5
- *view* of that single upload.
4
+ uploads it once. Subimages, tiles and whole sprite sheets are all *views* of that
5
+ single upload.
6
6
 
7
7
  ```ruby
8
8
  require 'rgame/core'
@@ -12,8 +12,12 @@ frame = img.subimage(0, 0, 16, 16)
12
12
  walk = RGame::Core::Image.load_tiles(app, 'hero.png', 16, 16)
13
13
  ```
14
14
 
15
- There is nothing to draw them with yet — the renderer is the next piece of the
16
- engine to land. What works today is loading, slicing and measuring.
15
+ [Drawing](drawing.md) covers putting images on screen.
16
+
17
+ **A game loads images through the [asset manager](assets.md)**, with
18
+ `app.assets.image(path)`. The manager resolves the path against `media_root` and
19
+ caches the image. `Image.new` and `Image.load_tiles` bypass that cache, and resolve a
20
+ relative path against the working directory.
17
21
 
18
22
  ## Loading
19
23
 
@@ -23,13 +27,12 @@ image.width # => 64
23
27
  image.height # => 32
24
28
  ```
25
29
 
26
- The `app` argument is required and comes first. A texture lives inside one
27
- OpenGL context, so an image genuinely is an image *of* a window rather than a
28
- free-floating object and saying so is what makes two windows work, and what
29
- lets the image keep its app alive for as long as it needs it.
30
+ **The `app` argument is required and comes first.** A texture lives inside one
31
+ OpenGL context, so an image belongs to a window. Naming the app lets two windows
32
+ work side by side. It also lets the image keep its app alive as long as it needs.
30
33
 
31
- PNG is the only format. A file that cannot be read or decoded raises
32
- `RGame::Core::Image::LoadError` with the path in the message:
34
+ rgame reads PNG only. A file it cannot read or decode raises
35
+ `RGame::Core::Image::LoadError`, with the path in the message:
33
36
 
34
37
  ```ruby
35
38
  begin
@@ -39,12 +42,11 @@ rescue RGame::Core::Image::LoadError => e
39
42
  end
40
43
  ```
41
44
 
42
- Greyscale and palette PNGs load fine; they are converted to RGBA on the way in,
43
- so there is only ever one pixel format in play.
45
+ Greyscale and palette PNGs load too. The loader converts them to RGBA, so the
46
+ engine handles one pixel format.
44
47
 
45
- **Images are always sampled nearest-neighbour.** There is no setting for it.
46
- The engine exists to draw pixel art, and blurring it on scale-up is never the
47
- intent.
48
+ **Images always use nearest-neighbour sampling**, with no setting to change it.
49
+ The engine draws pixel art, and pixel art should never blur when scaled up.
48
50
 
49
51
  ## Slicing: subimages and tiles
50
52
 
@@ -58,25 +60,24 @@ sheet.tiles(16, 16) # => [Image, Image, ...] all eight
58
60
  sheet.each_tile(16, 16) { |t| } # the same, without building the Array
59
61
  ```
60
62
 
61
- `Image.load_tiles(app, path, w, h)` is `new` plus `tiles` in one step, and is
62
- the usual way to open a sprite sheet:
63
+ `Image.load_tiles(app, path, w, h)` combines `new` and `tiles`. It is the usual
64
+ way to open a sprite sheet:
63
65
 
64
66
  ```ruby
65
67
  frames = RGame::Core::Image.load_tiles(app, 'explosion.png', 32, 32)
66
68
  ```
67
69
 
68
- Three things are worth knowing about all of these:
70
+ Three rules apply to all of these methods.
69
71
 
70
- **Nothing is decoded or uploaded twice.** A hundred tiles are a hundred small
71
- Ruby objects over one texture. Slicing a sheet is cheap enough to do at load
72
- time without thinking about it.
72
+ **Nothing is decoded or uploaded twice.** A hundred tiles are a hundred small Ruby
73
+ objects over one texture. Slice sheets at load time without worrying about cost.
73
74
 
74
- **Tiles come back in reading order** left to right, then top to bottom — which
75
- is how sprite-sheet frames are numbered everywhere else.
75
+ **Tiles come back in reading order**: left to right, then top to bottom. Sprite
76
+ sheets number their frames the same way.
76
77
 
77
- **A partial tile at the right or bottom edge is not a tile.** A 70-pixel-wide
78
- sheet sliced into 16s yields four columns and leaves six pixels of padding
79
- alone, because half a sprite is never what was meant.
78
+ **A partial tile at the right or bottom edge is not a tile.** Slicing a 70-pixel
79
+ sheet into 16s yields four columns. The six leftover pixels count as padding,
80
+ because half a sprite is never wanted.
80
81
 
81
82
  ### Coordinates are relative to what you cut from
82
83
 
@@ -87,24 +88,23 @@ row = sheet.subimage(0, 16, 64, 16) # the bottom row of the sheet
87
88
  tile = row.subimage(32, 0, 16, 16) # 32 pixels into *the row*, not the sheet
88
89
  ```
89
90
 
90
- A rectangle that does not fit raises `ArgumentError`, and an out-of-range tile
91
- index raises `IndexError`, rather than either returning `nil`:
91
+ **Bad coordinates raise; they never return `nil`.** A rectangle that does not fit
92
+ raises `ArgumentError`. An out-of-range tile index raises `IndexError`:
92
93
 
93
94
  ```ruby
94
95
  sheet.subimage(0, 0, 999, 999) # ArgumentError: does not fit in a 64x32 image
95
96
  sheet.tile(16, 16, 99) # IndexError: 8 tiles of 16x16
96
97
  ```
97
98
 
98
- A `nil` here would travel a long way into an asset table, out of it three
99
- scenes later before failing as a `NoMethodError` with nothing left pointing at
100
- the coordinates that were wrong.
99
+ A `nil` would travel a long way: into an asset table, and out again three scenes
100
+ later. It would finally fail as a `NoMethodError` that no longer points at the
101
+ wrong coordinates.
101
102
 
102
103
  ## Lifetime
103
104
 
104
- You never free an image. The texture is released when the last view of it is
105
- garbage-collected, and the order does not matter: dropping the sheet while its
106
- tiles are still in use keeps the upload alive, and dropping the window first is
107
- also fine.
105
+ **You never free an image.** The engine releases the texture when the last view
106
+ of it is garbage-collected, in any order. Tiles still in use keep the upload
107
+ alive after the sheet is dropped. Dropping the window first also works.
108
108
 
109
109
  ```ruby
110
110
  sheet = RGame::Core::Image.new(app, 'tiles.png')
@@ -112,7 +112,7 @@ ground = sheet.tile(16, 16, 0)
112
112
  sheet = nil # the upload stays — `ground` is still a view of it
113
113
  ```
114
114
 
115
- That is worth stating because a leaked GPU texture is invisible while it
116
- happens: nothing is slower, nothing looks wrong, and video memory fills up over
117
- an hour of play. `Image.debug_live_textures` reports how many uploads exist, and
118
- is there for tests to assert against; it is not part of the drawing API.
115
+ A leaked GPU texture shows no symptoms at first. Nothing slows down and nothing
116
+ looks wrong, while video memory fills over an hour of play.
117
+ `Image.debug_live_textures` returns how many uploads exist. Tests assert against
118
+ it; it is not part of the drawing API.