squib 0.17.2 → 0.19.0a
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/bug_report.md +39 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +22 -0
- data/.github/ISSUE_TEMPLATE/help-wanted.md +13 -0
- data/{RELEASE TODO.md → .github/ISSUE_TEMPLATE/release-todo.md} +45 -25
- data/.github/PULL_REQUEST_TEMPLATE.md +13 -0
- data/.github/workflows/tests.yml +22 -22
- data/.gitignore +41 -41
- data/.vscode/settings.json +5 -0
- data/CHANGELOG.md +460 -445
- data/CONTRIBUTING.md +40 -40
- data/Dockerfile +27 -27
- data/Gemfile +2 -2
- data/Guardfile +8 -8
- data/LICENSE.txt +22 -22
- data/README.md +139 -139
- data/Rakefile +51 -51
- data/bin/squib +5 -4
- data/lib/squib/api/settings.rb +21 -21
- data/lib/squib/args/arg_loader.rb +138 -129
- data/lib/squib/args/box.rb +59 -59
- data/lib/squib/args/card_range.rb +34 -34
- data/lib/squib/args/color_validator.rb +7 -7
- data/lib/squib/args/coords.rb +49 -49
- data/lib/squib/args/csv_opts.rb +22 -22
- data/lib/squib/args/dir_validator.rb +11 -11
- data/lib/squib/args/draw.rb +93 -93
- data/lib/squib/args/drop_shadow.rb +39 -39
- data/lib/squib/args/embed_adjust.rb +22 -22
- data/lib/squib/args/embed_key.rb +12 -12
- data/lib/squib/args/hand_special.rb +37 -37
- data/lib/squib/args/import.rb +67 -67
- data/lib/squib/args/input_file.rb +55 -33
- data/lib/squib/args/paint.rb +43 -43
- data/lib/squib/args/paragraph.rb +118 -118
- data/lib/squib/args/save_batch.rb +65 -65
- data/lib/squib/args/scale_box.rb +57 -57
- data/lib/squib/args/sheet.rb +165 -165
- data/lib/squib/args/showcase_special.rb +41 -41
- data/lib/squib/args/sprue_file.rb +44 -44
- data/lib/squib/args/svg_special.rb +37 -37
- data/lib/squib/args/transform.rb +55 -55
- data/lib/squib/args/typographer.rb +115 -115
- data/lib/squib/args/unit_conversion.rb +27 -27
- data/lib/squib/args/xywh_shorthands.rb +50 -50
- data/lib/squib/builtin/layouts/economy.yml +85 -85
- data/lib/squib/builtin/layouts/fantasy.yml +101 -101
- data/lib/squib/builtin/layouts/hand.yml +62 -62
- data/lib/squib/builtin/layouts/party.yml +94 -94
- data/lib/squib/builtin/layouts/playing-card.yml +35 -35
- data/lib/squib/builtin/layouts/tuck_box.yml +46 -46
- data/lib/squib/builtin/projects/advanced/.gitignore +4 -4
- data/lib/squib/builtin/projects/advanced/ABOUT.md +19 -19
- data/lib/squib/builtin/projects/advanced/Gemfile +11 -11
- data/lib/squib/builtin/projects/advanced/Guardfile +21 -21
- data/lib/squib/builtin/projects/advanced/IDEAS.md +22 -22
- data/lib/squib/builtin/projects/advanced/PLAYTESTING.md +26 -26
- data/lib/squib/builtin/projects/advanced/Rakefile +27 -27
- data/lib/squib/builtin/projects/advanced/config.yml +49 -49
- data/lib/squib/builtin/projects/advanced/docs/PNP NOTES.md +3 -3
- data/lib/squib/builtin/projects/advanced/docs/RULES.md +21 -21
- data/lib/squib/builtin/projects/advanced/img/example.svg +60 -60
- data/lib/squib/builtin/projects/advanced/layouts/deck.yml +27 -27
- data/lib/squib/builtin/projects/advanced/src/deck.rb +34 -34
- data/lib/squib/builtin/projects/advanced/src/version.rb +3 -3
- data/lib/squib/builtin/projects/basic/.gitignore +4 -4
- data/lib/squib/builtin/projects/basic/ABOUT.md +19 -19
- data/lib/squib/builtin/projects/basic/Gemfile +3 -3
- data/lib/squib/builtin/projects/basic/IDEAS.md +22 -22
- data/lib/squib/builtin/projects/basic/PLAYTESTING.md +26 -26
- data/lib/squib/builtin/projects/basic/PNP NOTES.md +3 -3
- data/lib/squib/builtin/projects/basic/RULES.md +21 -21
- data/lib/squib/builtin/projects/basic/Rakefile +7 -7
- data/lib/squib/builtin/projects/basic/config.yml +50 -50
- data/lib/squib/builtin/projects/basic/deck.rb +6 -6
- data/lib/squib/builtin/sprues/a4_euro_card.yml +42 -42
- data/lib/squib/builtin/sprues/a4_poker_card_8up.yml +40 -40
- data/lib/squib/builtin/sprues/a4_poker_card_9up.yml +42 -42
- data/lib/squib/builtin/sprues/a4_usa_card.yml +42 -42
- data/lib/squib/builtin/sprues/drivethrucards_1up.yml +10 -10
- data/lib/squib/builtin/sprues/letter_poker_card_9up.yml +25 -25
- data/lib/squib/builtin/sprues/letter_poker_foldable_8up.yml +52 -52
- data/lib/squib/builtin/sprues/printplaygames_18up.yml +68 -68
- data/lib/squib/card.rb +75 -75
- data/lib/squib/commands/cli.rb +39 -39
- data/lib/squib/commands/data/template_option.rb +109 -109
- data/lib/squib/commands/make_sprue.rb +277 -277
- data/lib/squib/commands/new.rb +77 -77
- data/lib/squib/conf.rb +149 -144
- data/lib/squib/constants.rb +17 -17
- data/lib/squib/deck.rb +138 -138
- data/lib/squib/dsl/background.rb +35 -35
- data/lib/squib/dsl/circle.rb +39 -39
- data/lib/squib/dsl/csv.rb +42 -42
- data/lib/squib/dsl/curve.rb +35 -35
- data/lib/squib/dsl/cut_zone.rb +47 -47
- data/lib/squib/dsl/ellipse.rb +37 -37
- data/lib/squib/dsl/grid.rb +35 -35
- data/lib/squib/dsl/groups.rb +54 -54
- data/lib/squib/dsl/hand.rb +42 -42
- data/lib/squib/dsl/line.rb +35 -35
- data/lib/squib/dsl/png.rb +57 -56
- data/lib/squib/dsl/polygon.rb +36 -36
- data/lib/squib/dsl/rect.rb +37 -37
- data/lib/squib/dsl/safe_zone.rb +48 -48
- data/lib/squib/dsl/save.rb +21 -21
- data/lib/squib/dsl/save_pdf.rb +50 -50
- data/lib/squib/dsl/save_png.rb +48 -48
- data/lib/squib/dsl/save_sheet.rb +53 -53
- data/lib/squib/dsl/showcase.rb +43 -43
- data/lib/squib/dsl/star.rb +37 -37
- data/lib/squib/dsl/svg.rb +63 -62
- data/lib/squib/dsl/text.rb +54 -54
- data/lib/squib/dsl/text_embed.rb +79 -78
- data/lib/squib/dsl/triangle.rb +35 -35
- data/lib/squib/dsl/units.rb +37 -37
- data/lib/squib/dsl/xlsx.rb +40 -40
- data/lib/squib/dsl/yaml.rb +40 -40
- data/lib/squib/errors_warnings/warn_unexpected_params.rb +14 -14
- data/lib/squib/graphics/background.rb +14 -14
- data/lib/squib/graphics/cairo_context_wrapper.rb +115 -115
- data/lib/squib/graphics/embedding_utils.rb +28 -28
- data/lib/squib/graphics/gradient_regex.rb +47 -47
- data/lib/squib/graphics/hand.rb +42 -42
- data/lib/squib/graphics/image.rb +123 -123
- data/lib/squib/graphics/save_doc.rb +77 -61
- data/lib/squib/graphics/save_images.rb +91 -91
- data/lib/squib/graphics/save_pdf.rb +90 -90
- data/lib/squib/graphics/save_sprue.rb +231 -231
- data/lib/squib/graphics/shapes.rb +143 -143
- data/lib/squib/graphics/showcase.rb +85 -85
- data/lib/squib/graphics/text.rb +202 -202
- data/lib/squib/import/csv_importer.rb +45 -45
- data/lib/squib/import/data_frame.rb +108 -108
- data/lib/squib/import/quantity_exploder.rb +17 -17
- data/lib/squib/import/xlsx_importer.rb +28 -28
- data/lib/squib/import/yaml_importer.rb +30 -30
- data/lib/squib/layout_parser.rb +155 -155
- data/lib/squib/progress.rb +38 -38
- data/lib/squib/sample_helpers.rb +34 -34
- data/lib/squib/sprues/crop_line.rb +28 -28
- data/lib/squib/sprues/crop_line_dash.rb +35 -35
- data/lib/squib/sprues/invalid_sprue_definition.rb +9 -9
- data/lib/squib/sprues/sprue.rb +208 -208
- data/lib/squib/sprues/sprue_schema.rb +51 -51
- data/lib/squib/system_fonts.rb +16 -16
- data/lib/squib/version.rb +11 -11
- data/lib/squib.rb +35 -36
- data/samples/autoscale_font/_autoscale_font.rb +98 -98
- data/samples/backend/_backend.rb +26 -26
- data/samples/basic.rb +19 -19
- data/samples/build_groups/build_groups.rb +36 -36
- data/samples/colors/_colors.rb +44 -44
- data/samples/colors/_gradients.rb +34 -34
- data/samples/colors/_switch_color.rb +33 -33
- data/samples/config/config_text_markup.rb +20 -20
- data/samples/config/custom_config.rb +18 -18
- data/samples/data/_csv.rb +33 -33
- data/samples/data/_excel.rb +55 -55
- data/samples/data/_yaml.rb +12 -12
- data/samples/hello_world.rb +6 -6
- data/samples/images/_cairo_access.rb +39 -39
- data/samples/images/_images.rb +104 -104
- data/samples/images/_more_load_images.rb +102 -102
- data/samples/images/_placeholders.rb +49 -0
- data/samples/intro/01_hello.rb +8 -8
- data/samples/intro/02_options.rb +14 -14
- data/samples/intro/03_layout.rb +11 -11
- data/samples/intro/04_arrays.rb +15 -15
- data/samples/intro/05_excel.rb +14 -14
- data/samples/layouts/builtin_layouts.rb +97 -97
- data/samples/layouts/layouts.rb +71 -71
- data/samples/project/src/characters.rb +8 -8
- data/samples/project/src/skills.rb +7 -7
- data/samples/proofs/_tgc_proofs.rb +16 -16
- data/samples/ranges/_ranges.rb +64 -64
- data/samples/saves/_hand.rb +23 -23
- data/samples/saves/_portrait_landscape.rb +23 -23
- data/samples/saves/_save_filenames.rb +28 -28
- data/samples/saves/_save_pdf.rb +29 -29
- data/samples/saves/_saves.rb +75 -62
- data/samples/saves/_showcase.rb +25 -25
- data/samples/shadows/_shadow.rb +71 -71
- data/samples/shapes/_draw_shapes.rb +60 -60
- data/samples/shapes/_proofs.rb +22 -22
- data/samples/sprues/_advanced_sprues.rb +25 -25
- data/samples/sprues/_builtin_sprues.rb +22 -22
- data/samples/sprues/_fold_sheet.rb +30 -30
- data/samples/sprues/_hex_tiles.rb +15 -15
- data/samples/sprues/_mints.rb +11 -11
- data/samples/sprues/_negative_coords.rb +6 -6
- data/samples/sprues/_sprue_example.rb +11 -11
- data/samples/system_font_debug/_list_fonts.rb +14 -14
- data/samples/text/_embed_text.rb +128 -128
- data/samples/text/_text.rb +52 -52
- data/samples/text/_text_options.rb +103 -103
- data/samples/text/bug134.rb +14 -14
- data/samples/units/_cells.rb +50 -50
- data/samples/units/_shorthands.rb +48 -48
- data/samples/units/_units.rb +39 -39
- data/squib.gemspec +58 -58
- metadata +31 -23
@@ -1,101 +1,101 @@
|
|
1
|
-
#This layout inspired by popular fantasy games
|
2
|
-
title:
|
3
|
-
x: 90
|
4
|
-
y: 90
|
5
|
-
width: 500
|
6
|
-
height: 50
|
7
|
-
|
8
|
-
upper_right:
|
9
|
-
x: 595
|
10
|
-
y: 90
|
11
|
-
width: 135
|
12
|
-
height: 50
|
13
|
-
align: right
|
14
|
-
ur: # alias
|
15
|
-
extends: upper_right
|
16
|
-
|
17
|
-
art:
|
18
|
-
x: 75
|
19
|
-
y: 150
|
20
|
-
width: 675
|
21
|
-
height: 520
|
22
|
-
|
23
|
-
type:
|
24
|
-
x: 90
|
25
|
-
y: 675
|
26
|
-
width: 500
|
27
|
-
height: 50
|
28
|
-
|
29
|
-
type_right:
|
30
|
-
x: 595
|
31
|
-
y: 675
|
32
|
-
width: 135
|
33
|
-
height: 50
|
34
|
-
align: right
|
35
|
-
tr: #alias
|
36
|
-
extends: type_right
|
37
|
-
|
38
|
-
description:
|
39
|
-
x: 100
|
40
|
-
y: 730
|
41
|
-
width: 625
|
42
|
-
height: 275
|
43
|
-
valign: middle
|
44
|
-
align: center
|
45
|
-
font_size: 6
|
46
|
-
desc: # alias
|
47
|
-
extends: description
|
48
|
-
|
49
|
-
lower_right:
|
50
|
-
x: 675
|
51
|
-
y: 975
|
52
|
-
width: 75
|
53
|
-
height: 75
|
54
|
-
font_size: 6
|
55
|
-
valign: bottom
|
56
|
-
align: right
|
57
|
-
lr: #alias
|
58
|
-
extends: lower_right
|
59
|
-
|
60
|
-
lower_left:
|
61
|
-
x: 75
|
62
|
-
y: 975
|
63
|
-
width: 75
|
64
|
-
height: 75
|
65
|
-
font_size: 6
|
66
|
-
valign: bottom
|
67
|
-
align: left
|
68
|
-
ll: # alias
|
69
|
-
extends: lower_left
|
70
|
-
|
71
|
-
copyright:
|
72
|
-
x: 75
|
73
|
-
y: 1025
|
74
|
-
width: 675
|
75
|
-
height: 25
|
76
|
-
font_size: 5
|
77
|
-
align: center
|
78
|
-
valign: bottom
|
79
|
-
#aliases for copyright
|
80
|
-
copy:
|
81
|
-
extends: copyright
|
82
|
-
credit:
|
83
|
-
extends: copyright
|
84
|
-
credits:
|
85
|
-
extends: copyright
|
86
|
-
|
87
|
-
# The "cut line", without rounded corners
|
88
|
-
cut:
|
89
|
-
x: 37.5
|
90
|
-
y: 37.5
|
91
|
-
width: 750
|
92
|
-
height: 1050
|
93
|
-
|
94
|
-
# The "safe zone" as defined by TheGameCrafter poker cards
|
95
|
-
safe:
|
96
|
-
x: 75
|
97
|
-
y: 75
|
98
|
-
width: 675
|
99
|
-
height: 975
|
100
|
-
radius: 16
|
101
|
-
dash: 3 3
|
1
|
+
#This layout inspired by popular fantasy games
|
2
|
+
title:
|
3
|
+
x: 90
|
4
|
+
y: 90
|
5
|
+
width: 500
|
6
|
+
height: 50
|
7
|
+
|
8
|
+
upper_right:
|
9
|
+
x: 595
|
10
|
+
y: 90
|
11
|
+
width: 135
|
12
|
+
height: 50
|
13
|
+
align: right
|
14
|
+
ur: # alias
|
15
|
+
extends: upper_right
|
16
|
+
|
17
|
+
art:
|
18
|
+
x: 75
|
19
|
+
y: 150
|
20
|
+
width: 675
|
21
|
+
height: 520
|
22
|
+
|
23
|
+
type:
|
24
|
+
x: 90
|
25
|
+
y: 675
|
26
|
+
width: 500
|
27
|
+
height: 50
|
28
|
+
|
29
|
+
type_right:
|
30
|
+
x: 595
|
31
|
+
y: 675
|
32
|
+
width: 135
|
33
|
+
height: 50
|
34
|
+
align: right
|
35
|
+
tr: #alias
|
36
|
+
extends: type_right
|
37
|
+
|
38
|
+
description:
|
39
|
+
x: 100
|
40
|
+
y: 730
|
41
|
+
width: 625
|
42
|
+
height: 275
|
43
|
+
valign: middle
|
44
|
+
align: center
|
45
|
+
font_size: 6
|
46
|
+
desc: # alias
|
47
|
+
extends: description
|
48
|
+
|
49
|
+
lower_right:
|
50
|
+
x: 675
|
51
|
+
y: 975
|
52
|
+
width: 75
|
53
|
+
height: 75
|
54
|
+
font_size: 6
|
55
|
+
valign: bottom
|
56
|
+
align: right
|
57
|
+
lr: #alias
|
58
|
+
extends: lower_right
|
59
|
+
|
60
|
+
lower_left:
|
61
|
+
x: 75
|
62
|
+
y: 975
|
63
|
+
width: 75
|
64
|
+
height: 75
|
65
|
+
font_size: 6
|
66
|
+
valign: bottom
|
67
|
+
align: left
|
68
|
+
ll: # alias
|
69
|
+
extends: lower_left
|
70
|
+
|
71
|
+
copyright:
|
72
|
+
x: 75
|
73
|
+
y: 1025
|
74
|
+
width: 675
|
75
|
+
height: 25
|
76
|
+
font_size: 5
|
77
|
+
align: center
|
78
|
+
valign: bottom
|
79
|
+
#aliases for copyright
|
80
|
+
copy:
|
81
|
+
extends: copyright
|
82
|
+
credit:
|
83
|
+
extends: copyright
|
84
|
+
credits:
|
85
|
+
extends: copyright
|
86
|
+
|
87
|
+
# The "cut line", without rounded corners
|
88
|
+
cut:
|
89
|
+
x: 37.5
|
90
|
+
y: 37.5
|
91
|
+
width: 750
|
92
|
+
height: 1050
|
93
|
+
|
94
|
+
# The "safe zone" as defined by TheGameCrafter poker cards
|
95
|
+
safe:
|
96
|
+
x: 75
|
97
|
+
y: 75
|
98
|
+
width: 675
|
99
|
+
height: 975
|
100
|
+
radius: 16
|
101
|
+
dash: 3 3
|
@@ -1,62 +1,62 @@
|
|
1
|
-
# A layout designed for a card to be held in your hand.
|
2
|
-
# * Bonuses align along the left-hand side.
|
3
|
-
# * Title along the top.
|
4
|
-
# * Middle area for artwork,
|
5
|
-
# * Room for a text description
|
6
|
-
# * And some theme-based text (which I like call the "snark")
|
7
|
-
# Along the lines of Race for the Galaxy or 7 Wonders
|
8
|
-
# Based on TheGameCrafter.com's Poker Card, which is 825x1125
|
9
|
-
# Sample usage is found in samples/layouts.rb
|
10
|
-
title:
|
11
|
-
x: 275
|
12
|
-
y: 75
|
13
|
-
width: 475
|
14
|
-
height: 125
|
15
|
-
art:
|
16
|
-
x: 275
|
17
|
-
y: 225
|
18
|
-
width: 475
|
19
|
-
height: 475
|
20
|
-
description:
|
21
|
-
x: 275
|
22
|
-
y: 725
|
23
|
-
width: 475
|
24
|
-
height: 200
|
25
|
-
snark:
|
26
|
-
x: 275
|
27
|
-
y: 950
|
28
|
-
width: 475
|
29
|
-
height: 100
|
30
|
-
bonus1:
|
31
|
-
x: 75
|
32
|
-
y: 75
|
33
|
-
width: 175
|
34
|
-
height: 175
|
35
|
-
bonus2:
|
36
|
-
extends: bonus1
|
37
|
-
y: += 198
|
38
|
-
bonus3:
|
39
|
-
extends: bonus2
|
40
|
-
y: += 198
|
41
|
-
bonus4:
|
42
|
-
extends: bonus3
|
43
|
-
y: += 198
|
44
|
-
bonus5:
|
45
|
-
extends: bonus4
|
46
|
-
y: += 198
|
47
|
-
|
48
|
-
# The "cut line", without rounded corners
|
49
|
-
cut:
|
50
|
-
x: 37.5
|
51
|
-
y: 37.5
|
52
|
-
width: 750
|
53
|
-
height: 1050
|
54
|
-
|
55
|
-
# The "safe zone" as defined by TheGameCrafter poker cards
|
56
|
-
safe:
|
57
|
-
x: 75
|
58
|
-
y: 75
|
59
|
-
width: 675
|
60
|
-
height: 975
|
61
|
-
radius: 16
|
62
|
-
dash: 3 3
|
1
|
+
# A layout designed for a card to be held in your hand.
|
2
|
+
# * Bonuses align along the left-hand side.
|
3
|
+
# * Title along the top.
|
4
|
+
# * Middle area for artwork,
|
5
|
+
# * Room for a text description
|
6
|
+
# * And some theme-based text (which I like call the "snark")
|
7
|
+
# Along the lines of Race for the Galaxy or 7 Wonders
|
8
|
+
# Based on TheGameCrafter.com's Poker Card, which is 825x1125
|
9
|
+
# Sample usage is found in samples/layouts.rb
|
10
|
+
title:
|
11
|
+
x: 275
|
12
|
+
y: 75
|
13
|
+
width: 475
|
14
|
+
height: 125
|
15
|
+
art:
|
16
|
+
x: 275
|
17
|
+
y: 225
|
18
|
+
width: 475
|
19
|
+
height: 475
|
20
|
+
description:
|
21
|
+
x: 275
|
22
|
+
y: 725
|
23
|
+
width: 475
|
24
|
+
height: 200
|
25
|
+
snark:
|
26
|
+
x: 275
|
27
|
+
y: 950
|
28
|
+
width: 475
|
29
|
+
height: 100
|
30
|
+
bonus1:
|
31
|
+
x: 75
|
32
|
+
y: 75
|
33
|
+
width: 175
|
34
|
+
height: 175
|
35
|
+
bonus2:
|
36
|
+
extends: bonus1
|
37
|
+
y: += 198
|
38
|
+
bonus3:
|
39
|
+
extends: bonus2
|
40
|
+
y: += 198
|
41
|
+
bonus4:
|
42
|
+
extends: bonus3
|
43
|
+
y: += 198
|
44
|
+
bonus5:
|
45
|
+
extends: bonus4
|
46
|
+
y: += 198
|
47
|
+
|
48
|
+
# The "cut line", without rounded corners
|
49
|
+
cut:
|
50
|
+
x: 37.5
|
51
|
+
y: 37.5
|
52
|
+
width: 750
|
53
|
+
height: 1050
|
54
|
+
|
55
|
+
# The "safe zone" as defined by TheGameCrafter poker cards
|
56
|
+
safe:
|
57
|
+
x: 75
|
58
|
+
y: 75
|
59
|
+
width: 675
|
60
|
+
height: 975
|
61
|
+
radius: 16
|
62
|
+
dash: 3 3
|
@@ -1,94 +1,94 @@
|
|
1
|
-
#This layout inspired by popular games like Fluxx and Apples to Apples
|
2
|
-
title_box:
|
3
|
-
x: 75
|
4
|
-
y: 75
|
5
|
-
width: 125
|
6
|
-
height: 975
|
7
|
-
|
8
|
-
title:
|
9
|
-
x: 75
|
10
|
-
y: 1050
|
11
|
-
angle: 4.71238898 # 3 π / 2
|
12
|
-
width: 850
|
13
|
-
height: 125
|
14
|
-
align: right
|
15
|
-
valign: middle
|
16
|
-
font: Sans 22
|
17
|
-
|
18
|
-
title_middle:
|
19
|
-
x: 225
|
20
|
-
y: 550
|
21
|
-
font: Sans 18
|
22
|
-
width: 525
|
23
|
-
height: 150
|
24
|
-
valign: bottom
|
25
|
-
|
26
|
-
middle_rect:
|
27
|
-
x: 225
|
28
|
-
y: 715
|
29
|
-
width: 525
|
30
|
-
height: 25
|
31
|
-
|
32
|
-
rule_top:
|
33
|
-
x: 225
|
34
|
-
y: 200
|
35
|
-
width: 525
|
36
|
-
height: 300
|
37
|
-
font: Times New Roman, Serif 10
|
38
|
-
|
39
|
-
rule_bottom:
|
40
|
-
x: 225
|
41
|
-
y: 750
|
42
|
-
width: 525
|
43
|
-
height: 300
|
44
|
-
font: Times New Roman, Serif 10
|
45
|
-
|
46
|
-
type_icon:
|
47
|
-
x: 75
|
48
|
-
y: 75
|
49
|
-
width: 125
|
50
|
-
height: 125
|
51
|
-
align: center
|
52
|
-
valign: middle
|
53
|
-
font: 'Sans 24'
|
54
|
-
|
55
|
-
type:
|
56
|
-
x: 225
|
57
|
-
y: 75
|
58
|
-
width: 525
|
59
|
-
height: 125
|
60
|
-
align: left
|
61
|
-
valign: top
|
62
|
-
font: 'Sans 30'
|
63
|
-
|
64
|
-
copyright:
|
65
|
-
x: 75
|
66
|
-
y: 1025
|
67
|
-
width: 675
|
68
|
-
height: 25
|
69
|
-
font_size: 5
|
70
|
-
align: right
|
71
|
-
valign: bottom
|
72
|
-
#aliases for copyright
|
73
|
-
copy:
|
74
|
-
extends: copyright
|
75
|
-
credit:
|
76
|
-
extends: copyright
|
77
|
-
credits:
|
78
|
-
extends: copyright
|
79
|
-
|
80
|
-
# The "cut line", without rounded corners
|
81
|
-
cut:
|
82
|
-
x: 37.5
|
83
|
-
y: 37.5
|
84
|
-
radius: 16
|
85
|
-
width: 750
|
86
|
-
height: 1050
|
87
|
-
|
88
|
-
# The "safe zone" as defined by TheGameCrafter poker cards
|
89
|
-
safe:
|
90
|
-
x: 75
|
91
|
-
y: 75
|
92
|
-
width: 675
|
93
|
-
height: 975
|
94
|
-
dash: 3 3
|
1
|
+
#This layout inspired by popular games like Fluxx and Apples to Apples
|
2
|
+
title_box:
|
3
|
+
x: 75
|
4
|
+
y: 75
|
5
|
+
width: 125
|
6
|
+
height: 975
|
7
|
+
|
8
|
+
title:
|
9
|
+
x: 75
|
10
|
+
y: 1050
|
11
|
+
angle: 4.71238898 # 3 π / 2
|
12
|
+
width: 850
|
13
|
+
height: 125
|
14
|
+
align: right
|
15
|
+
valign: middle
|
16
|
+
font: Sans 22
|
17
|
+
|
18
|
+
title_middle:
|
19
|
+
x: 225
|
20
|
+
y: 550
|
21
|
+
font: Sans 18
|
22
|
+
width: 525
|
23
|
+
height: 150
|
24
|
+
valign: bottom
|
25
|
+
|
26
|
+
middle_rect:
|
27
|
+
x: 225
|
28
|
+
y: 715
|
29
|
+
width: 525
|
30
|
+
height: 25
|
31
|
+
|
32
|
+
rule_top:
|
33
|
+
x: 225
|
34
|
+
y: 200
|
35
|
+
width: 525
|
36
|
+
height: 300
|
37
|
+
font: Times New Roman, Serif 10
|
38
|
+
|
39
|
+
rule_bottom:
|
40
|
+
x: 225
|
41
|
+
y: 750
|
42
|
+
width: 525
|
43
|
+
height: 300
|
44
|
+
font: Times New Roman, Serif 10
|
45
|
+
|
46
|
+
type_icon:
|
47
|
+
x: 75
|
48
|
+
y: 75
|
49
|
+
width: 125
|
50
|
+
height: 125
|
51
|
+
align: center
|
52
|
+
valign: middle
|
53
|
+
font: 'Sans 24'
|
54
|
+
|
55
|
+
type:
|
56
|
+
x: 225
|
57
|
+
y: 75
|
58
|
+
width: 525
|
59
|
+
height: 125
|
60
|
+
align: left
|
61
|
+
valign: top
|
62
|
+
font: 'Sans 30'
|
63
|
+
|
64
|
+
copyright:
|
65
|
+
x: 75
|
66
|
+
y: 1025
|
67
|
+
width: 675
|
68
|
+
height: 25
|
69
|
+
font_size: 5
|
70
|
+
align: right
|
71
|
+
valign: bottom
|
72
|
+
#aliases for copyright
|
73
|
+
copy:
|
74
|
+
extends: copyright
|
75
|
+
credit:
|
76
|
+
extends: copyright
|
77
|
+
credits:
|
78
|
+
extends: copyright
|
79
|
+
|
80
|
+
# The "cut line", without rounded corners
|
81
|
+
cut:
|
82
|
+
x: 37.5
|
83
|
+
y: 37.5
|
84
|
+
radius: 16
|
85
|
+
width: 750
|
86
|
+
height: 1050
|
87
|
+
|
88
|
+
# The "safe zone" as defined by TheGameCrafter poker cards
|
89
|
+
safe:
|
90
|
+
x: 75
|
91
|
+
y: 75
|
92
|
+
width: 675
|
93
|
+
height: 975
|
94
|
+
dash: 3 3
|
@@ -1,35 +1,35 @@
|
|
1
|
-
# A basic playing card layout with bonuses in the upper-left and lower-right.
|
2
|
-
# The lower-right angle is rotated for text.
|
3
|
-
bonus_ul:
|
4
|
-
x: 75
|
5
|
-
y: 75
|
6
|
-
width: 200
|
7
|
-
height: 200
|
8
|
-
bonus_lr:
|
9
|
-
extends: bonus_ul
|
10
|
-
x: 750
|
11
|
-
y: 1050
|
12
|
-
angle: 3.14159
|
13
|
-
art:
|
14
|
-
x: 150
|
15
|
-
y: 275
|
16
|
-
width: 525
|
17
|
-
height: 575
|
18
|
-
valign: middle
|
19
|
-
align: center
|
20
|
-
|
21
|
-
# The "cut line", without rounded corners
|
22
|
-
cut:
|
23
|
-
x: 37.5
|
24
|
-
y: 37.5
|
25
|
-
width: 750
|
26
|
-
height: 1050
|
27
|
-
|
28
|
-
# The "safe zone" as defined by TheGameCrafter poker cards
|
29
|
-
safe:
|
30
|
-
x: 75
|
31
|
-
y: 75
|
32
|
-
width: 675
|
33
|
-
height: 975
|
34
|
-
radius: 16
|
35
|
-
dash: 3 3
|
1
|
+
# A basic playing card layout with bonuses in the upper-left and lower-right.
|
2
|
+
# The lower-right angle is rotated for text.
|
3
|
+
bonus_ul:
|
4
|
+
x: 75
|
5
|
+
y: 75
|
6
|
+
width: 200
|
7
|
+
height: 200
|
8
|
+
bonus_lr:
|
9
|
+
extends: bonus_ul
|
10
|
+
x: 750
|
11
|
+
y: 1050
|
12
|
+
angle: 3.14159
|
13
|
+
art:
|
14
|
+
x: 150
|
15
|
+
y: 275
|
16
|
+
width: 525
|
17
|
+
height: 575
|
18
|
+
valign: middle
|
19
|
+
align: center
|
20
|
+
|
21
|
+
# The "cut line", without rounded corners
|
22
|
+
cut:
|
23
|
+
x: 37.5
|
24
|
+
y: 37.5
|
25
|
+
width: 750
|
26
|
+
height: 1050
|
27
|
+
|
28
|
+
# The "safe zone" as defined by TheGameCrafter poker cards
|
29
|
+
safe:
|
30
|
+
x: 75
|
31
|
+
y: 75
|
32
|
+
width: 675
|
33
|
+
height: 975
|
34
|
+
radius: 16
|
35
|
+
dash: 3 3
|
@@ -1,46 +1,46 @@
|
|
1
|
-
## Rectangles correspond to the "safe zones" as defined by TheGameCrafter for tuck boxes 2325x1950 pixels
|
2
|
-
top_rect:
|
3
|
-
x: 313
|
4
|
-
y: 198
|
5
|
-
width: 688
|
6
|
-
height: 167
|
7
|
-
|
8
|
-
bottom_rect:
|
9
|
-
x: 313
|
10
|
-
y: 1526
|
11
|
-
width: 688
|
12
|
-
height: 167
|
13
|
-
|
14
|
-
right_rect:
|
15
|
-
x: 77
|
16
|
-
y: 466
|
17
|
-
width: 164
|
18
|
-
height: 988
|
19
|
-
|
20
|
-
left_rect:
|
21
|
-
x: 1080
|
22
|
-
y: 466
|
23
|
-
width: 164
|
24
|
-
height: 988
|
25
|
-
|
26
|
-
back_rect:
|
27
|
-
x: 313
|
28
|
-
y: 466
|
29
|
-
width: 688
|
30
|
-
height: 989
|
31
|
-
|
32
|
-
front_rect:
|
33
|
-
x: 1322
|
34
|
-
y: 466
|
35
|
-
width: 688
|
36
|
-
height: 989
|
37
|
-
|
38
|
-
front_curve:
|
39
|
-
x1: 1550
|
40
|
-
y1: 466
|
41
|
-
x2: 1765
|
42
|
-
y2: 466
|
43
|
-
cx1: 1575
|
44
|
-
cy1: 565
|
45
|
-
cx2: 1740
|
46
|
-
cy2: 565
|
1
|
+
## Rectangles correspond to the "safe zones" as defined by TheGameCrafter for tuck boxes 2325x1950 pixels
|
2
|
+
top_rect:
|
3
|
+
x: 313
|
4
|
+
y: 198
|
5
|
+
width: 688
|
6
|
+
height: 167
|
7
|
+
|
8
|
+
bottom_rect:
|
9
|
+
x: 313
|
10
|
+
y: 1526
|
11
|
+
width: 688
|
12
|
+
height: 167
|
13
|
+
|
14
|
+
right_rect:
|
15
|
+
x: 77
|
16
|
+
y: 466
|
17
|
+
width: 164
|
18
|
+
height: 988
|
19
|
+
|
20
|
+
left_rect:
|
21
|
+
x: 1080
|
22
|
+
y: 466
|
23
|
+
width: 164
|
24
|
+
height: 988
|
25
|
+
|
26
|
+
back_rect:
|
27
|
+
x: 313
|
28
|
+
y: 466
|
29
|
+
width: 688
|
30
|
+
height: 989
|
31
|
+
|
32
|
+
front_rect:
|
33
|
+
x: 1322
|
34
|
+
y: 466
|
35
|
+
width: 688
|
36
|
+
height: 989
|
37
|
+
|
38
|
+
front_curve:
|
39
|
+
x1: 1550
|
40
|
+
y1: 466
|
41
|
+
x2: 1765
|
42
|
+
y2: 466
|
43
|
+
cx1: 1575
|
44
|
+
cy1: 565
|
45
|
+
cx2: 1740
|
46
|
+
cy2: 565
|
@@ -1,4 +1,4 @@
|
|
1
|
-
_output/*.png
|
2
|
-
_output/*.pdf
|
3
|
-
~$*
|
4
|
-
.DS_Store
|
1
|
+
_output/*.png
|
2
|
+
_output/*.pdf
|
3
|
+
~$*
|
4
|
+
.DS_Store
|