squib 0.15.1 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (200) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/tests.yml +22 -0
  3. data/.gitignore +41 -41
  4. data/CHANGELOG.md +422 -387
  5. data/CONTRIBUTING.md +40 -40
  6. data/Dockerfile +27 -25
  7. data/Gemfile +2 -2
  8. data/Guardfile +8 -0
  9. data/LICENSE.txt +22 -22
  10. data/README.md +139 -121
  11. data/RELEASE TODO.md +22 -21
  12. data/Rakefile +51 -48
  13. data/bin/squib +4 -4
  14. data/lib/squib.rb +34 -32
  15. data/lib/squib/api/settings.rb +21 -21
  16. data/lib/squib/args/arg_loader.rb +129 -126
  17. data/lib/squib/args/box.rb +59 -55
  18. data/lib/squib/args/card_range.rb +34 -32
  19. data/lib/squib/args/color_validator.rb +7 -12
  20. data/lib/squib/args/coords.rb +49 -35
  21. data/lib/squib/args/csv_opts.rb +22 -25
  22. data/lib/squib/args/dir_validator.rb +11 -16
  23. data/lib/squib/args/draw.rb +93 -92
  24. data/lib/squib/args/embed_adjust.rb +22 -25
  25. data/lib/squib/args/embed_key.rb +12 -17
  26. data/lib/squib/args/hand_special.rb +37 -37
  27. data/lib/squib/args/import.rb +67 -40
  28. data/lib/squib/args/input_file.rb +33 -37
  29. data/lib/squib/args/paint.rb +43 -44
  30. data/lib/squib/args/paragraph.rb +118 -116
  31. data/lib/squib/args/save_batch.rb +65 -63
  32. data/lib/squib/args/scale_box.rb +57 -53
  33. data/lib/squib/args/sheet.rb +170 -172
  34. data/lib/squib/args/showcase_special.rb +41 -41
  35. data/lib/squib/args/sprue_file.rb +44 -44
  36. data/lib/squib/args/svg_special.rb +37 -37
  37. data/lib/squib/args/transform.rb +55 -61
  38. data/lib/squib/args/typographer.rb +115 -119
  39. data/lib/squib/args/unit_conversion.rb +27 -29
  40. data/lib/squib/args/xywh_shorthands.rb +51 -0
  41. data/lib/squib/builtin/layouts/economy.yml +85 -85
  42. data/lib/squib/builtin/layouts/fantasy.yml +101 -101
  43. data/lib/squib/builtin/layouts/hand.yml +62 -62
  44. data/lib/squib/builtin/layouts/party.yml +94 -94
  45. data/lib/squib/builtin/layouts/playing-card.yml +35 -35
  46. data/lib/squib/builtin/layouts/tuck_box.yml +46 -46
  47. data/lib/squib/builtin/projects/advanced/.gitignore +4 -4
  48. data/lib/squib/builtin/projects/advanced/ABOUT.md +19 -19
  49. data/lib/squib/builtin/projects/advanced/Gemfile +11 -11
  50. data/lib/squib/builtin/projects/advanced/Guardfile +21 -21
  51. data/lib/squib/builtin/projects/advanced/IDEAS.md +22 -22
  52. data/lib/squib/builtin/projects/advanced/PLAYTESTING.md +26 -26
  53. data/lib/squib/builtin/projects/advanced/Rakefile +27 -27
  54. data/lib/squib/builtin/projects/advanced/config.yml +50 -49
  55. data/lib/squib/builtin/projects/advanced/docs/PNP NOTES.md +3 -3
  56. data/lib/squib/builtin/projects/advanced/docs/RULES.md +21 -21
  57. data/lib/squib/builtin/projects/advanced/img/example.svg +60 -60
  58. data/lib/squib/builtin/projects/advanced/layouts/deck.yml +27 -27
  59. data/lib/squib/builtin/projects/advanced/src/deck.rb +34 -34
  60. data/lib/squib/builtin/projects/advanced/src/version.rb +3 -3
  61. data/lib/squib/builtin/projects/basic/.gitignore +4 -4
  62. data/lib/squib/builtin/projects/basic/ABOUT.md +19 -19
  63. data/lib/squib/builtin/projects/basic/Gemfile +3 -3
  64. data/lib/squib/builtin/projects/basic/IDEAS.md +22 -22
  65. data/lib/squib/builtin/projects/basic/PLAYTESTING.md +26 -26
  66. data/lib/squib/builtin/projects/basic/PNP NOTES.md +3 -3
  67. data/lib/squib/builtin/projects/basic/RULES.md +21 -21
  68. data/lib/squib/builtin/projects/basic/Rakefile +7 -7
  69. data/lib/squib/builtin/projects/basic/config.yml +50 -49
  70. data/lib/squib/builtin/projects/basic/deck.rb +6 -6
  71. data/lib/squib/builtin/sprues/a4_euro_card.yml +42 -42
  72. data/lib/squib/builtin/sprues/a4_poker_card_8up.yml +40 -40
  73. data/lib/squib/builtin/sprues/a4_poker_card_9up.yml +42 -42
  74. data/lib/squib/builtin/sprues/a4_usa_card.yml +42 -42
  75. data/lib/squib/builtin/sprues/drivethrucards_1up.yml +10 -10
  76. data/lib/squib/builtin/sprues/letter_poker_card_9up.yml +25 -25
  77. data/lib/squib/builtin/sprues/letter_poker_foldable_8up.yml +52 -52
  78. data/lib/squib/builtin/sprues/printplaygames_18up.yml +68 -68
  79. data/lib/squib/card.rb +75 -75
  80. data/lib/squib/commands/cli.rb +39 -39
  81. data/lib/squib/commands/data/template_option.rb +109 -109
  82. data/lib/squib/commands/make_sprue.rb +277 -277
  83. data/lib/squib/commands/new.rb +77 -77
  84. data/lib/squib/conf.rb +144 -139
  85. data/lib/squib/constants.rb +17 -17
  86. data/lib/squib/deck.rb +138 -116
  87. data/lib/squib/dsl/background.rb +35 -0
  88. data/lib/squib/dsl/circle.rb +39 -0
  89. data/lib/squib/dsl/csv.rb +42 -0
  90. data/lib/squib/dsl/curve.rb +35 -0
  91. data/lib/squib/dsl/cut_zone.rb +47 -0
  92. data/lib/squib/dsl/ellipse.rb +37 -0
  93. data/lib/squib/dsl/grid.rb +35 -0
  94. data/lib/squib/{api → dsl}/groups.rb +54 -54
  95. data/lib/squib/dsl/hand.rb +42 -0
  96. data/lib/squib/dsl/line.rb +35 -0
  97. data/lib/squib/dsl/png.rb +56 -0
  98. data/lib/squib/dsl/polygon.rb +36 -0
  99. data/lib/squib/dsl/rect.rb +37 -0
  100. data/lib/squib/dsl/safe_zone.rb +48 -0
  101. data/lib/squib/dsl/save.rb +21 -0
  102. data/lib/squib/dsl/save_pdf.rb +50 -0
  103. data/lib/squib/dsl/save_png.rb +44 -0
  104. data/lib/squib/dsl/save_sheet.rb +53 -0
  105. data/lib/squib/dsl/showcase.rb +43 -0
  106. data/lib/squib/dsl/star.rb +37 -0
  107. data/lib/squib/dsl/svg.rb +62 -0
  108. data/lib/squib/dsl/text.rb +54 -0
  109. data/lib/squib/dsl/text_embed.rb +78 -0
  110. data/lib/squib/dsl/triangle.rb +35 -0
  111. data/lib/squib/{api → dsl}/units.rb +37 -27
  112. data/lib/squib/dsl/xlsx.rb +40 -0
  113. data/lib/squib/dsl/yaml.rb +40 -0
  114. data/lib/squib/errors_warnings/warn_unexpected_params.rb +14 -0
  115. data/lib/squib/graphics/background.rb +14 -14
  116. data/lib/squib/graphics/cairo_context_wrapper.rb +113 -113
  117. data/lib/squib/graphics/embedding_utils.rb +28 -28
  118. data/lib/squib/graphics/gradient_regex.rb +47 -47
  119. data/lib/squib/graphics/hand.rb +42 -42
  120. data/lib/squib/graphics/image.rb +123 -123
  121. data/lib/squib/graphics/save_doc.rb +61 -61
  122. data/lib/squib/graphics/save_images.rb +52 -52
  123. data/lib/squib/graphics/save_pdf.rb +90 -90
  124. data/lib/squib/graphics/save_sprue.rb +231 -219
  125. data/lib/squib/graphics/shapes.rb +143 -143
  126. data/lib/squib/graphics/showcase.rb +85 -85
  127. data/lib/squib/graphics/text.rb +202 -174
  128. data/lib/squib/import/csv_importer.rb +45 -0
  129. data/lib/squib/import/data_frame.rb +108 -108
  130. data/lib/squib/import/quantity_exploder.rb +18 -0
  131. data/lib/squib/import/xlsx_importer.rb +28 -0
  132. data/lib/squib/import/yaml_importer.rb +30 -0
  133. data/lib/squib/layout_parser.rb +155 -138
  134. data/lib/squib/progress.rb +38 -38
  135. data/lib/squib/sample_helpers.rb +34 -34
  136. data/lib/squib/sprues/crop_line.rb +28 -28
  137. data/lib/squib/sprues/crop_line_dash.rb +35 -35
  138. data/lib/squib/sprues/invalid_sprue_definition.rb +9 -9
  139. data/lib/squib/sprues/sprue.rb +208 -206
  140. data/lib/squib/sprues/sprue_schema.rb +50 -50
  141. data/lib/squib/version.rb +11 -10
  142. data/samples/autoscale_font/_autoscale_font.rb +98 -29
  143. data/samples/backend/_backend.rb +26 -26
  144. data/samples/basic.rb +19 -19
  145. data/samples/build_groups/build_groups.rb +36 -36
  146. data/samples/colors/_colors.rb +44 -44
  147. data/samples/colors/_gradients.rb +34 -34
  148. data/samples/colors/_switch_color.rb +33 -33
  149. data/samples/config/config_text_markup.rb +20 -20
  150. data/samples/config/custom_config.rb +18 -18
  151. data/samples/data/_csv.rb +33 -33
  152. data/samples/data/_excel.rb +55 -55
  153. data/samples/data/_yaml.rb +12 -12
  154. data/samples/hello_world.rb +6 -6
  155. data/samples/images/_cairo_access.rb +39 -39
  156. data/samples/images/_images.rb +104 -104
  157. data/samples/images/_more_load_images.rb +102 -102
  158. data/samples/intro/01_hello.rb +8 -8
  159. data/samples/intro/02_options.rb +14 -14
  160. data/samples/intro/03_layout.rb +11 -11
  161. data/samples/intro/04_arrays.rb +15 -15
  162. data/samples/intro/05_excel.rb +14 -14
  163. data/samples/layouts/builtin_layouts.rb +97 -97
  164. data/samples/layouts/layouts.rb +71 -71
  165. data/samples/project/src/characters.rb +8 -8
  166. data/samples/project/src/skills.rb +7 -7
  167. data/samples/proofs/_tgc_proofs.rb +16 -16
  168. data/samples/ranges/_ranges.rb +64 -64
  169. data/samples/saves/_hand.rb +23 -23
  170. data/samples/saves/_portrait_landscape.rb +23 -23
  171. data/samples/saves/_save_filenames.rb +28 -24
  172. data/samples/saves/_save_pdf.rb +29 -29
  173. data/samples/saves/_saves.rb +52 -51
  174. data/samples/saves/_showcase.rb +25 -25
  175. data/samples/shapes/_draw_shapes.rb +60 -60
  176. data/samples/shapes/_proofs.rb +22 -22
  177. data/samples/sprues/_advanced_sprues.rb +25 -25
  178. data/samples/sprues/_builtin_sprues.rb +22 -21
  179. data/samples/sprues/_fold_sheet.rb +30 -27
  180. data/samples/sprues/_hex_tiles.rb +15 -15
  181. data/samples/sprues/_mints.rb +11 -11
  182. data/samples/sprues/_sprue_example.rb +11 -11
  183. data/samples/text/_embed_text.rb +128 -128
  184. data/samples/text/_text.rb +52 -47
  185. data/samples/text/_text_options.rb +103 -102
  186. data/samples/text/bug134.rb +14 -14
  187. data/samples/units/_cells.rb +51 -0
  188. data/samples/units/_shorthands.rb +48 -0
  189. data/samples/units/_units.rb +39 -32
  190. data/squib.gemspec +58 -52
  191. metadata +177 -91
  192. data/.travis.yml +0 -17
  193. data/appveyor.yml +0 -25
  194. data/lib/squib/api/background.rb +0 -15
  195. data/lib/squib/api/data.rb +0 -137
  196. data/lib/squib/api/image.rb +0 -49
  197. data/lib/squib/api/save.rb +0 -83
  198. data/lib/squib/api/shapes.rb +0 -124
  199. data/lib/squib/api/text.rb +0 -25
  200. data/lib/squib/api/text_embed.rb +0 -71
@@ -1,27 +1,37 @@
1
- require_relative '../constants'
2
-
3
- module Squib
4
- class Deck
5
-
6
- # DSL method. See http://squib.readthedocs.io
7
- def inches(n)
8
- @dpi * n.to_f
9
- end
10
-
11
- # DSL method. See http://squib.readthedocs.io
12
- def points(n)
13
- @dpi / Squib::POINTS_PER_IN * n.to_f
14
- end
15
-
16
- # DSL method. See http://squib.readthedocs.io
17
- def cm(n)
18
- @dpi * Squib::INCHES_IN_CM * n.to_f
19
- end
20
-
21
- # DSL method. See http://squib.readthedocs.io
22
- def mm(n)
23
- @dpi * Squib::INCHES_IN_CM * n.to_f / 10.0
24
- end
25
-
26
- end
27
- end
1
+ require_relative '../constants'
2
+
3
+ module Squib
4
+ class Deck
5
+
6
+ # DSL method. See http://squib.readthedocs.io
7
+ def inches(n)
8
+ @dpi * n.to_f
9
+ end
10
+
11
+ # DSL method. See http://squib.readthedocs.io
12
+ def points(n)
13
+ @dpi / Squib::POINTS_PER_IN * n.to_f
14
+ end
15
+
16
+ # DSL method. See http://squib.readthedocs.io
17
+ def cm(n)
18
+ @dpi * Squib::INCHES_IN_CM * n.to_f
19
+ end
20
+
21
+ # DSL method. See http://squib.readthedocs.io
22
+ def mm(n)
23
+ @dpi * Squib::INCHES_IN_CM * n.to_f / 10.0
24
+ end
25
+
26
+ # DSL method. See http://squib.readthedocs.io
27
+ def deg(n)
28
+ n.to_f * (Math::PI / 180.0)
29
+ end
30
+
31
+ # DSL method. See http://squib.readthedocs.io
32
+ def cells(n)
33
+ n.to_f * @cell_px
34
+ end
35
+
36
+ end
37
+ end
@@ -0,0 +1,40 @@
1
+ require_relative '../args/import'
2
+ require_relative '../import/xlsx_importer'
3
+ require_relative '../errors_warnings/warn_unexpected_params'
4
+
5
+ module Squib
6
+ # DSL method. See http://squib.readthedocs.io
7
+ def xlsx(opts = {}, &block)
8
+ DSL::Xlsx.new(__callee__).run(opts, &block)
9
+ end
10
+ module_function :xlsx
11
+
12
+ class Deck
13
+ # DSL method. See http://squib.readthedocs.io
14
+ def xlsx(opts = {}, &block)
15
+ DSL::Xlsx.new(__callee__).run(opts, &block)
16
+ end
17
+ end
18
+
19
+ module DSL
20
+ class Xlsx
21
+ include WarnUnexpectedParams
22
+ attr_reader :dsl_method, :block
23
+
24
+ def initialize(dsl_method)
25
+ @dsl_method = dsl_method
26
+ end
27
+
28
+ def self.accepted_params
29
+ %i( file sheet strip explode )
30
+ end
31
+
32
+ def run(opts,&block)
33
+ warn_if_unexpected opts
34
+ import_args = Args.extract_import opts
35
+ importer = Squib::Import::XlsxImporter.new
36
+ importer.import_to_dataframe(import_args, &block)
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,40 @@
1
+ require_relative '../args/import'
2
+ require_relative '../import/yaml_importer'
3
+ require_relative '../errors_warnings/warn_unexpected_params'
4
+
5
+ module Squib
6
+ # DSL method. See http://squib.readthedocs.io
7
+ def yaml(opts = {}, &block)
8
+ DSL::Yaml.new(__callee__).run(opts, &block)
9
+ end
10
+ module_function :yaml
11
+
12
+ class Deck
13
+ # DSL method. See http://squib.readthedocs.io
14
+ def yaml(opts = {}, &block)
15
+ DSL::Yaml.new(__callee__).run(opts, &block)
16
+ end
17
+ end
18
+
19
+ module DSL
20
+ class Yaml
21
+ include WarnUnexpectedParams
22
+ attr_reader :dsl_method, :block
23
+
24
+ def initialize(dsl_method)
25
+ @dsl_method = dsl_method
26
+ end
27
+
28
+ def self.accepted_params
29
+ %i( file data explode )
30
+ end
31
+
32
+ def run(opts,&block)
33
+ warn_if_unexpected opts
34
+ import_args = Args.extract_import opts
35
+ importer = Squib::Import::YamlImporter.new
36
+ importer.import_to_dataframe(import_args, &block)
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,14 @@
1
+ require 'rainbow/refinement'
2
+
3
+ module Squib::WarnUnexpectedParams
4
+ using Rainbow # we can colorize strings now!
5
+
6
+ def warn_if_unexpected(opts, uplevel: 5)
7
+ accepted_params = self.class.accepted_params
8
+ unexpected = opts.keys - accepted_params
9
+ unexpected.each do |key|
10
+ warn "Unexpected parameter '#{key.to_s.yellow}:' to #{dsl_method.to_s.cyan}(). Accepted parameters: #{accepted_params}",
11
+ uplevel: uplevel
12
+ end
13
+ end
14
+ end
@@ -1,14 +1,14 @@
1
- module Squib
2
- class Card
3
-
4
- # :nodoc:
5
- # @api private
6
- def background(color)
7
- use_cairo do |cc|
8
- cc.set_source_squibcolor(color)
9
- cc.paint
10
- end
11
- end
12
-
13
- end
14
- end
1
+ module Squib
2
+ class Card
3
+
4
+ # :nodoc:
5
+ # @api private
6
+ def background(color)
7
+ use_cairo do |cc|
8
+ cc.set_source_squibcolor(color)
9
+ cc.paint
10
+ end
11
+ end
12
+
13
+ end
14
+ end
@@ -1,113 +1,113 @@
1
- require 'forwardable'
2
- require_relative 'gradient_regex'
3
-
4
- module Squib
5
- module Graphics
6
- # Wrapper class for the Cairo context. Private.
7
- # @api private
8
- class CairoContextWrapper
9
- extend Forwardable
10
-
11
- # :nodoc:
12
- # @api private
13
- attr_accessor :cairo_cxt
14
-
15
- # :nodoc:
16
- # @api private
17
- def initialize(cairo_cxt)
18
- @cairo_cxt = cairo_cxt
19
- end
20
-
21
- def_delegators :cairo_cxt, :save, :set_source_color, :paint, :restore,
22
- :translate, :rotate, :move_to, :update_pango_layout, :width, :height,
23
- :show_pango_layout, :rectangle, :rounded_rectangle, :set_line_width, :stroke, :fill,
24
- :set_source, :scale, :render_rsvg_handle, :circle, :triangle, :line_to,
25
- :operator=, :show_page, :clip, :transform, :mask, :create_pango_layout,
26
- :antialias=, :curve_to, :matrix, :matrix=, :identity_matrix, :pango_layout_path,
27
- :stroke_preserve, :target, :new_path, :new_sub_path, :reset_clip, :fill_preserve, :close_path,
28
- :set_line_join, :set_line_cap, :set_dash, :arc, :arc_negative
29
-
30
- # :nodoc:
31
- # @api private
32
- def set_source_squibcolor(arg)
33
- raise 'nil is not a valid color' if arg.nil?
34
- if match = arg.match(LINEAR_GRADIENT)
35
- x1, y1, x2, y2 = match.captures
36
- linear = Cairo::LinearPattern.new(x1.to_f, y1.to_f, x2.to_f, y2.to_f)
37
- arg.scan(STOPS).each do |color, offset|
38
- linear.add_color_stop(offset.to_f, color)
39
- end
40
- linear.matrix = matrix # match the coordinate systems - see bug 127
41
- @cairo_cxt.set_source(linear)
42
- elsif match = arg.match(RADIAL_GRADIENT)
43
- x1, y1, r1, x2, y2, r2 = match.captures
44
- radial = Cairo::RadialPattern.new(x1.to_f, y1.to_f, r1.to_f,
45
- x2.to_f, y2.to_f, r2.to_f)
46
- radial.matrix = matrix # match the coordinate systems - see bug 127
47
- arg.scan(STOPS).each do |color, offset|
48
- radial.add_color_stop(offset.to_f, color)
49
- end
50
- @cairo_cxt.set_source(radial)
51
- else
52
- @cairo_cxt.set_source_color(arg)
53
- end
54
- end
55
-
56
- # Convenience method for a common task
57
- # @api private
58
- def fill_n_stroke(draw)
59
- return stroke_n_fill(draw) if draw.stroke_strategy == :stroke_first
60
- set_source_squibcolor draw.fill_color
61
- fill_preserve
62
- set_source_squibcolor draw.stroke_color
63
- set_line_width draw.stroke_width
64
- set_line_join draw.join
65
- set_line_cap draw.cap
66
- set_dash draw.dash
67
- stroke
68
- end
69
-
70
- def stroke_n_fill(draw)
71
- return fill_n_stroke(draw) if draw.stroke_strategy == :fill_first
72
- set_source_squibcolor draw.stroke_color
73
- set_line_width draw.stroke_width
74
- set_line_join draw.join
75
- set_line_cap draw.cap
76
- set_dash draw.dash
77
- stroke_preserve
78
- set_source_squibcolor draw.fill_color
79
- fill
80
- end
81
-
82
- # Convenience method for a common task
83
- # @api private
84
- def fancy_stroke(draw)
85
- set_source_squibcolor draw.stroke_color
86
- set_line_width draw.stroke_width
87
- set_line_join draw.join
88
- set_line_cap draw.cap
89
- set_dash draw.dash
90
- stroke
91
- end
92
-
93
- def rotate_about(x, y, angle)
94
- translate(x, y)
95
- rotate(angle)
96
- translate(-x, -y)
97
- end
98
-
99
- # Flip either vertical or horizontal depending
100
- # From the cairo website: http://cairographics.org/matrix_transform/
101
- # cairo.Matrix(fx, 0, 0,
102
- # fy, cx*(1-fx), cy*(fy-1))
103
- # fx/fy = 1 means 'no flip', fx/fy = -1 are used for horizontal/vertical flip
104
- def flip(vertical, horizontal, x, y)
105
- v = vertical ? -1.0 : 1.0
106
- h = horizontal ? -1.0 : 1.0
107
- transform Cairo::Matrix.new(v, 0.0, 0.0,
108
- h, x * (1 - v), y * (1 - h))
109
- end
110
-
111
- end
112
- end
113
- end
1
+ require 'forwardable'
2
+ require_relative 'gradient_regex'
3
+
4
+ module Squib
5
+ module Graphics
6
+ # Wrapper class for the Cairo context. Private.
7
+ # @api private
8
+ class CairoContextWrapper
9
+ extend Forwardable
10
+
11
+ # :nodoc:
12
+ # @api private
13
+ attr_accessor :cairo_cxt
14
+
15
+ # :nodoc:
16
+ # @api private
17
+ def initialize(cairo_cxt)
18
+ @cairo_cxt = cairo_cxt
19
+ end
20
+
21
+ def_delegators :cairo_cxt, :save, :set_source_color, :paint, :restore,
22
+ :translate, :rotate, :move_to, :update_pango_layout, :width, :height,
23
+ :show_pango_layout, :rectangle, :rounded_rectangle, :set_line_width, :stroke, :fill,
24
+ :set_source, :scale, :render_rsvg_handle, :circle, :triangle, :line_to,
25
+ :operator=, :show_page, :clip, :transform, :mask, :create_pango_layout,
26
+ :antialias=, :curve_to, :matrix, :matrix=, :identity_matrix, :pango_layout_path,
27
+ :stroke_preserve, :target, :new_path, :new_sub_path, :reset_clip, :fill_preserve, :close_path,
28
+ :set_line_join, :set_line_cap, :set_dash, :arc, :arc_negative
29
+
30
+ # :nodoc:
31
+ # @api private
32
+ def set_source_squibcolor(arg)
33
+ raise 'nil is not a valid color' if arg.nil?
34
+ if match = arg.match(LINEAR_GRADIENT)
35
+ x1, y1, x2, y2 = match.captures
36
+ linear = Cairo::LinearPattern.new(x1.to_f, y1.to_f, x2.to_f, y2.to_f)
37
+ arg.scan(STOPS).each do |color, offset|
38
+ linear.add_color_stop(offset.to_f, color)
39
+ end
40
+ linear.matrix = matrix # match the coordinate systems - see bug 127
41
+ @cairo_cxt.set_source(linear)
42
+ elsif match = arg.match(RADIAL_GRADIENT)
43
+ x1, y1, r1, x2, y2, r2 = match.captures
44
+ radial = Cairo::RadialPattern.new(x1.to_f, y1.to_f, r1.to_f,
45
+ x2.to_f, y2.to_f, r2.to_f)
46
+ radial.matrix = matrix # match the coordinate systems - see bug 127
47
+ arg.scan(STOPS).each do |color, offset|
48
+ radial.add_color_stop(offset.to_f, color)
49
+ end
50
+ @cairo_cxt.set_source(radial)
51
+ else
52
+ @cairo_cxt.set_source_color(arg)
53
+ end
54
+ end
55
+
56
+ # Convenience method for a common task
57
+ # @api private
58
+ def fill_n_stroke(draw)
59
+ return stroke_n_fill(draw) if draw.stroke_strategy == :stroke_first
60
+ set_source_squibcolor draw.fill_color
61
+ fill_preserve
62
+ set_source_squibcolor draw.stroke_color
63
+ set_line_width draw.stroke_width
64
+ set_line_join draw.join
65
+ set_line_cap draw.cap
66
+ set_dash draw.dash
67
+ stroke
68
+ end
69
+
70
+ def stroke_n_fill(draw)
71
+ return fill_n_stroke(draw) if draw.stroke_strategy == :fill_first
72
+ set_source_squibcolor draw.stroke_color
73
+ set_line_width draw.stroke_width
74
+ set_line_join draw.join
75
+ set_line_cap draw.cap
76
+ set_dash draw.dash
77
+ stroke_preserve
78
+ set_source_squibcolor draw.fill_color
79
+ fill
80
+ end
81
+
82
+ # Convenience method for a common task
83
+ # @api private
84
+ def fancy_stroke(draw)
85
+ set_source_squibcolor draw.stroke_color
86
+ set_line_width draw.stroke_width
87
+ set_line_join draw.join
88
+ set_line_cap draw.cap
89
+ set_dash draw.dash
90
+ stroke
91
+ end
92
+
93
+ def rotate_about(x, y, angle)
94
+ translate(x, y)
95
+ rotate(angle)
96
+ translate(-x, -y)
97
+ end
98
+
99
+ # Flip either vertical or horizontal depending
100
+ # From the cairo website: http://cairographics.org/matrix_transform/
101
+ # cairo.Matrix(fx, 0, 0,
102
+ # fy, cx*(1-fx), cy*(fy-1))
103
+ # fx/fy = 1 means 'no flip', fx/fy = -1 are used for horizontal/vertical flip
104
+ def flip(vertical, horizontal, x, y)
105
+ v = vertical ? -1.0 : 1.0
106
+ h = horizontal ? -1.0 : 1.0
107
+ transform Cairo::Matrix.new(v, 0.0, 0.0,
108
+ h, x * (1 - v), y * (1 - h))
109
+ end
110
+
111
+ end
112
+ end
113
+ end
@@ -1,28 +1,28 @@
1
- module Squib
2
- class EmbeddingUtils
3
-
4
- # Given a string and a bunch of keys, give us back a mapping of those keys
5
- # to where those keys start, and where they end (in ranges)
6
- #
7
- # See the spec for expected outputs
8
- def self.indices(str, keys)
9
- map = {}
10
- keys.each do |key|
11
- map[key] ||= []
12
- start = 0
13
- while true
14
- idx = str.index(key, start)
15
- if idx.nil?
16
- break; # done searching
17
- else
18
- idx_bytes = str[0..idx].bytesize - 1
19
- map[key] << (idx_bytes..(idx_bytes + key.size))
20
- start = idx + 1
21
- end
22
- end
23
- end
24
- return map
25
- end
26
-
27
- end
28
- end
1
+ module Squib
2
+ class EmbeddingUtils
3
+
4
+ # Given a string and a bunch of keys, give us back a mapping of those keys
5
+ # to where those keys start, and where they end (in ranges)
6
+ #
7
+ # See the spec for expected outputs
8
+ def self.indices(str, keys)
9
+ map = {}
10
+ keys.each do |key|
11
+ map[key] ||= []
12
+ start = 0
13
+ while true
14
+ idx = str.index(key, start)
15
+ if idx.nil?
16
+ break; # done searching
17
+ else
18
+ idx_bytes = str[0..idx].bytesize - 1
19
+ map[key] << (idx_bytes..(idx_bytes + key.size))
20
+ start = idx + 1
21
+ end
22
+ end
23
+ end
24
+ return map
25
+ end
26
+
27
+ end
28
+ end