WinColl 0.9.6__py3-none-any.whl

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.
@@ -0,0 +1,138 @@
1
+ Metadata-Version: 2.1
2
+ Name: WinColl
3
+ Version: 0.9.6
4
+ Summary: Simple rocks-and-diamonds game
5
+ Author-email: Reuben Thomas <rrt@sc3d.org>
6
+ License: GPL v3 or later
7
+ Project-URL: Homepage, https://github.com/rrthomas/wincoll
8
+ Classifier: Environment :: X11 Applications
9
+ Classifier: Environment :: MacOS X
10
+ Classifier: Environment :: Win32 (MS Windows)
11
+ Classifier: Topic :: Games/Entertainment :: Puzzle Games
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+ Requires-Dist: i18nparse
16
+ Requires-Dist: importlib-resources>=5.10
17
+ Requires-Dist: platformdirs
18
+ Requires-Dist: pygame>=2.0.0
19
+ Requires-Dist: pyscroll
20
+ Requires-Dist: pytmx
21
+ Requires-Dist: typing_extensions
22
+
23
+ # WinColl
24
+
25
+ https://github.com/rrthomas/wincoll
26
+
27
+ by Reuben Thomas <rrt@sc3d.org>
28
+
29
+ WinColl is a simple puzzle game in which you tunnel through caverns
30
+ collecting diamonds while avoiding being squashed by falling rocks. It is
31
+ based on [Repton](https://en.wikipedia.org/wiki/Repton_(video_game)) (but
32
+ without eggs and monsters).
33
+
34
+ I originally wrote WinColl for Acorn RISC OS. Original and updated [RISC OS
35
+ versions](<https://github.com/rrthomas/wincoll/RISC OS.md>) are available.
36
+
37
+ The name of the game is an abbreviation of my school’s. “Repton” is also the
38
+ name of a school, but I don’t believe the game was named after it!
39
+
40
+
41
+ ## Credits
42
+
43
+ Level design and graphics also by Alistair Turnbull, Paul Smith and Jeremy
44
+ Douglas. Paul also designed the title graphic.
45
+
46
+ The sounds are from [Freesound](https://freesound.org), lightly adapted.
47
+
48
+
49
+ ## Installation and use
50
+
51
+ The game provides instructions on how to play.
52
+
53
+ ### Binary installers
54
+
55
+ Installers are available for GNU/Linux, macOS and Windows. See the
56
+ [latest release](https://github.com/wincoll/releases):
57
+
58
+ * The GNU/Linux version is a single binary; you need to make it executable
59
+ and then either copy it to a directory on your path, or run it directly:
60
+ `chmod +x NAME-OF-FILE; ./NAME-OF-FILE`
61
+ * The macOS version is a disk image file containing an application. Drag the
62
+ application to a suitable location (e.g. your Applications folder). macOS
63
+ will probably refuse to run it until you have approved it in System
64
+ Settings→Privacy and Security, under “Security”.
65
+ * The Windows version is a single `.exe`. Unfortunately it is detected as a
66
+ virus by most virus scanners, including Microsoft Defender, because Python
67
+ apps have often been used to distribute malware. Hence, you will probably
68
+ have to turn off virus scanning before you download it (to prevent it from
69
+ being immediately quarantined or deleted), and then add an exception for
70
+ it. After that, you can put the `.exe` file in a suitable location and
71
+ double-click it to play.
72
+
73
+ ### Python package
74
+
75
+ If you are a Python user, this is the simplest way to get WinColl on most
76
+ machines.
77
+
78
+ Install with `pip`: `pip install wincoll`, then execute the command
79
+ `wincoll`.
80
+
81
+
82
+ ## Creating and editing levels
83
+
84
+ Currently, to play edited or new levels you must have a source check-out of
85
+ WinColl from GitHub. (If this doesn’t make sense to you, sorry! I hope to
86
+ provide a simpler way to edit and play new levels soon.)
87
+
88
+ The level files are in the `wincoll/levels` subdirectory of the project, and
89
+ are [Tiled](https://www.mapeditor.org/) level editor files, so you will need
90
+ to install Tiled to edit them.
91
+
92
+ Having saved an edited level you can install the Python package with
93
+ `pip install .` or run it directly with `PYTHONPATH=. python -m wincoll`.
94
+
95
+ Some notes about level design:
96
+
97
+ + The supplied levels have a brick wall all the way around. This is
98
+ conventional but not necessary: there’s an imaginary brick wall around the
99
+ outside of the level already.
100
+ + Levels need exactly one start position (represented by placing the Win
101
+ character).
102
+ + No other checks are done to make sure a level is possible to complete; for
103
+ example, you can place diamonds surrounded by bricks, or have safes but no
104
+ key.
105
+
106
+ The files are named `Level??.tmx` where the question marks represent two
107
+ decimal digits.
108
+
109
+ I welcome [pull requests](https://github.com/rrthomas/wincoll/pulls) for new
110
+ levels.
111
+
112
+
113
+ ## Copyright and Disclaimer
114
+
115
+ WinColl is distributed under the GNU Public License version 3, or, at your
116
+ option, any later version. See the file COPYING.
117
+
118
+ THIS PROGRAM IS PROVIDED AS IS, WITH NO WARRANTY. USE IS AT THE USER'S RISK.
119
+ WinColl’s code is copyright Reuben Thomas, and its levels and graphics by
120
+ Reuben Thomas, Alistair Turnbull, Paul Smith and Jeremy Douglas.
121
+
122
+ The font “Acorn Mode 1”, which is based on the design of Acorn computers’
123
+ system font, as used on the Acorn Archimedes on which WinColl was originally
124
+ written, is by p1.mark and licensed under CC BY-SA 3.0.
125
+
126
+ The sound effects are copyrighted and licensed as follows:
127
+
128
+ + Diamond collection:
129
+ [Ding.wav by datasoundsample](https://freesound.org/s/638638/) under CC
130
+ BY 4.0
131
+ + Rock fall:
132
+ [WHITE_NOISE-10s.wav by newagesoup](https://freesound.org/s/349315/)
133
+ under CC 0
134
+ + Safe unlock:
135
+ [Old Church Bell (no noise) by igroglaz](https://freesound.org/s/633208/)
136
+ under CC 0
137
+ + Death splat:
138
+ [Splat1.wav by Shakedown_M](https://freesound.org/s/685205/) under CC 0
@@ -0,0 +1,37 @@
1
+ wincoll/Collect.wav,sha256=4PzNw0QlVMjF9nOotr0iovW2ElOgNzwj3R1X_9TP4kQ,47780
2
+ wincoll/Slide.wav,sha256=LXHMpxZZSZH2SNqHS7WKKidrO8zIKsmKfvIHI5DCuyg,96276
3
+ wincoll/Splat.wav,sha256=EBRmP_2TAJ8L7cc4sU5OV1AVvj5tETLDK1utSq7utu4,52748
4
+ wincoll/Unlock.wav,sha256=krHwy5m30hBMJBekVTGNjcQecJY_SXFTBgOqHZmEAqE,213298
5
+ wincoll/__init__.py,sha256=Av40DCvIe1b5xk17SS9rQJZgQgB3HzBAuH4ta7Ep5IE,21741
6
+ wincoll/__main__.py,sha256=tH9dTcHmc6eKazK5MGAjXVapoUsx3IwHaMHHWUKI-j4,117
7
+ wincoll/acorn-mode-1.ttf,sha256=AO4ehoXNGm5WIQAqWeK9vKHCAV1YHFRTzOoT0ckFXb0,37232
8
+ wincoll/diamond.png,sha256=C7cjuaITr4aq6K1k7CYt0wh9rOwNj9vK5SOLqb8wJns,4338
9
+ wincoll/langdetect.py,sha256=4UsZjS2bYCMP3xTc1M3lKvw5DEQ4UWHGMpRybZyX5aA,1712
10
+ wincoll/ptext.py,sha256=ffslgqrCGxMgXRh5wYwjjAj975-jHKfz-DoE0mnQd2E,38558
11
+ wincoll/splat.png,sha256=rx5Zt9y8i7AR5KqyUojIHw5HyP_m4_GfkULvR2oIL6Q,176
12
+ wincoll/title.png,sha256=qk_Fjez6O6D9FpqTPTrrqvewAUD1ZclEhmoBmBRywqY,4985
13
+ wincoll/warnings_util.py,sha256=Fuhb7IDEQBLonUTbopQdLfWalCrCIS6yA7FVY8KkQzo,903
14
+ wincoll/levels/01.tmx,sha256=5YURdOWoXpGn0tAyOlHpQLuXYk_10UxX43HuJkPx-mQ,8010
15
+ wincoll/levels/02.tmx,sha256=T8GIvX5FB2nEJY6Jc29YboI-5Qg5PDfiHeNE4JvvlQU,8011
16
+ wincoll/levels/03.tmx,sha256=E5oPIT3w0yHiOfaQve40ihT-25XfCQg3yN8XfGXiKB8,8012
17
+ wincoll/levels/04.tmx,sha256=PWmpJ_6rX2SGkTESgAO06778s4eE5t0jOxbTp4KkkDs,8008
18
+ wincoll/levels/05.tmx,sha256=ldI5QLfJbydiXtgb_4ZtdPPipjoOGqlfSfz5GtG3Mos,8010
19
+ wincoll/levels/06.tmx,sha256=Y8FZsw9npaeTHgaKIQ2iDbM-IgUxpeBGt0RBOKjAJWQ,8034
20
+ wincoll/levels/Blob.png,sha256=d51hiO3mrkh0Q_S9WM8WCVyDwmeAgTcGKbdHDEKmSzU,130
21
+ wincoll/levels/Brick.png,sha256=1szvbjlT2zRZ_WJJ6NlUxmYS2MaG_QwwFyHPLIByLuM,98
22
+ wincoll/levels/Diamond.png,sha256=wYGf7UJsWuhHq4c5ZLAZL_tOptGPtC-i52FMo-V9QI8,160
23
+ wincoll/levels/Earth.png,sha256=nxmyVX9c4yqXBc3yew9sU6Si_V8AmEaSfrcd4TaVIso,193
24
+ wincoll/levels/Gap.png,sha256=LgqaLV8oVjRj9jTVuB7C75DZGv5HKgxuLG70CC-T7F8,73
25
+ wincoll/levels/Key.png,sha256=4DqibXMj08s2n-98tRPYKEo3GFCVNgTcemx2gDz9dCc,131
26
+ wincoll/levels/Rock.png,sha256=ys0n-SB69nFaQPWzA1YT0mxT9XRzMxntPqIA7p4eiT8,202
27
+ wincoll/levels/Safe.png,sha256=qaxhVVkwa9ISrI4CtIRhPTr-fAFqhEpcTKr-WLWYsIg,147
28
+ wincoll/levels/Win.png,sha256=dEUgnRLAVT-QU72qBLf6eLiCWYYT4wRuIXIJEt5cuPw,4314
29
+ wincoll/levels/WinColl.tsx,sha256=pHsi09Xg1g4N-k-TFw-vTZsD7jeYp_PWho74NoUGgYY,993
30
+ wincoll/locale/el/LC_MESSAGES/wincoll.mo,sha256=BPTDGAaGpX28T2kRCCn9erBUWIbZphxxIs3DjwsgNa4,1887
31
+ wincoll/locale/fr/LC_MESSAGES/argparse.mo,sha256=-c_D7qSPJaUcmFam6NUY8eLu_x1scJLZlIPD2kIH3Bc,644
32
+ wincoll/locale/fr/LC_MESSAGES/wincoll.mo,sha256=t_Lqd-IAAqkzg1Td9PucxGdSAwnSI6GVfuzfY14RXcI,1412
33
+ WinColl-0.9.6.dist-info/METADATA,sha256=QxaDegOFsV1VMUyUs0gxqHNOK9XjgktPArHuYjFUGvE,5170
34
+ WinColl-0.9.6.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
35
+ WinColl-0.9.6.dist-info/entry_points.txt,sha256=KtnQQu1RdfmvKuApapuxbd41MZNj7immtk5KOT4rmFE,41
36
+ WinColl-0.9.6.dist-info/top_level.txt,sha256=4Nuxx_Ph1ecS6TdW_5FEJ3xxJLB3G-Z6wAM73iHIO00,8
37
+ WinColl-0.9.6.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.6.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ wincoll = wincoll:main
@@ -0,0 +1 @@
1
+ wincoll
wincoll/Collect.wav ADDED
Binary file
wincoll/Slide.wav ADDED
Binary file
wincoll/Splat.wav ADDED
Binary file
wincoll/Unlock.wav ADDED
Binary file