fixup! Add initial source download

This commit is contained in:
Jared Miller 2026-02-12 20:13:40 -05:00
parent 0cbb1ef05a
commit 80b0cc0aa8
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C
9 changed files with 9785 additions and 9785 deletions

View file

@ -1,44 +1,44 @@
# PLAYSCII - an ASCII art and game creation tool # PLAYSCII - an ASCII art and game creation tool
Playscii (pronounced play-skee) is an art, animation, and game creation tool. Playscii (pronounced play-skee) is an art, animation, and game creation tool.
The latest version will always be available here: The latest version will always be available here:
* [http://jp.itch.io/playscii](http://jp.itch.io/playscii) * [http://jp.itch.io/playscii](http://jp.itch.io/playscii)
* [https://heptapod.host/jp-lebreton/playscii](https://heptapod.host/jp-lebreton/playscii) * [https://heptapod.host/jp-lebreton/playscii](https://heptapod.host/jp-lebreton/playscii)
Playscii's main website is here: Playscii's main website is here:
* [https://jplebreton.com/playscii/](https://jplebreton.com/playscii/) * [https://jplebreton.com/playscii/](https://jplebreton.com/playscii/)
## Offline documentation ## Offline documentation
Playscii now includes its own HTML documentation, which you can find in the Playscii now includes its own HTML documentation, which you can find in the
docs/html/ subfolder of the folder where this README resides. docs/html/ subfolder of the folder where this README resides.
## Online documentation ## Online documentation
The latest version of the HTML documentation resides here: The latest version of the HTML documentation resides here:
[https://jplebreton.com/playscii/howto_main.html](https://jplebreton.com/playscii/howto_main.html) [https://jplebreton.com/playscii/howto_main.html](https://jplebreton.com/playscii/howto_main.html)
## Bugs ## Bugs
If you run into any issues with Playscii, please report a bug here: If you run into any issues with Playscii, please report a bug here:
[https://heptapod.host/jp-lebreton/playscii/issues](https://heptapod.host/jp-lebreton/playscii/issues) [https://heptapod.host/jp-lebreton/playscii/issues](https://heptapod.host/jp-lebreton/playscii/issues)
## Roadmap ## Roadmap
For possible future features see Playscii's Trello: For possible future features see Playscii's Trello:
[https://trello.com/b/BLQBXn5H/playscii](https://trello.com/b/BLQBXn5H/playscii) [https://trello.com/b/BLQBXn5H/playscii](https://trello.com/b/BLQBXn5H/playscii)
Please don't take anything there as a promise, though. If you'd find something Please don't take anything there as a promise, though. If you'd find something
on there especially valuable, feel free to vote or comment! on there especially valuable, feel free to vote or comment!
## Contact ## Contact
If you've made something cool with Playscii and/or have any suggestions on how If you've made something cool with Playscii and/or have any suggestions on how
to improve it, please let JP know! to improve it, please let JP know!
[https://jplebreton.com/#contact_email](https://jplebreton.com/#contact_email) [https://jplebreton.com/#contact_email](https://jplebreton.com/#contact_email)

19260
art/new.psci

File diff suppressed because it is too large Load diff

View file

@ -1,37 +1,37 @@
@echo off @echo off
set BUILD_EXE_PATH=dist\playscii.exe set BUILD_EXE_PATH=dist\playscii.exe
set OUTPUT_DIR=dist\playscii\ set OUTPUT_DIR=dist\playscii\
set ICON_PATH=ui\playscii.ico set ICON_PATH=ui\playscii.ico
set XCOPY_INCLUDE=win_xcopy_include set XCOPY_INCLUDE=win_xcopy_include
set XCOPY_EXCLUDE=win_xcopy_exclude set XCOPY_EXCLUDE=win_xcopy_exclude
set COPY_INCLUDE=win_copy_include set COPY_INCLUDE=win_copy_include
echo Creating new build... echo Creating new build...
REM ==== -F = everything in one file; -w = no console window; -i = path to icon REM ==== -F = everything in one file; -w = no console window; -i = path to icon
python -m PyInstaller -F -w -i %ICON_PATH% --exclude-module pdoc playscii.py python -m PyInstaller -F -w -i %ICON_PATH% --exclude-module pdoc playscii.py
echo Build done! echo Build done!
REM ==== move build so that ZIP will have a subdir enclosing everything REM ==== move build so that ZIP will have a subdir enclosing everything
mkdir %OUTPUT_DIR% mkdir %OUTPUT_DIR%
move %BUILD_EXE_PATH% %OUTPUT_DIR% move %BUILD_EXE_PATH% %OUTPUT_DIR%
echo ----------- echo -----------
echo Copying external files... echo Copying external files...
REM ==== xcopy dirs recursively REM ==== xcopy dirs recursively
for /f "tokens=*" %%i in (%XCOPY_INCLUDE%) DO ( for /f "tokens=*" %%i in (%XCOPY_INCLUDE%) DO (
echo %%i echo %%i
xcopy /E/Y "%%i" "%OUTPUT_DIR%\%%i" /exclude:%XCOPY_EXCLUDE% xcopy /E/Y "%%i" "%OUTPUT_DIR%\%%i" /exclude:%XCOPY_EXCLUDE%
) )
REM ==== regular copy files (non-recursively) REM ==== regular copy files (non-recursively)
for /f "tokens=*" %%i in (%COPY_INCLUDE%) DO ( for /f "tokens=*" %%i in (%COPY_INCLUDE%) DO (
echo %%i echo %%i
copy /Y "%%i" %OUTPUT_DIR% > NUL copy /Y "%%i" %OUTPUT_DIR% > NUL
) )
echo ----------- echo -----------
echo Done! echo Done!
pause pause

View file

@ -1,27 +1,27 @@
// Mattel Intellivision (built-in) // Mattel Intellivision (built-in)
intellivision.png intellivision.png
16, 14 16, 14
!"#$%&'()*+,-./ !"#$%&'()*+,-./
0123456789:;<=>? 0123456789:;<=>?
@ABCDEFGHIJKLMNO @ABCDEFGHIJKLMNO
PQRSTUVWXYZ[\]^ PQRSTUVWXYZ[\]^
`abcdefghijklmno `abcdefghijklmno
pqrstuvwxyz{|}~ pqrstuvwxyz{|}~

View file

@ -1,21 +1,21 @@
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2014-2022 JP LeBreton Copyright (c) 2014-2022 JP LeBreton
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions: furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software. all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE. THE SOFTWARE.

View file

@ -1,6 +1,6 @@
version version
*.default *.default
README.md README.md
license.txt license.txt
code_of_conduct.txt code_of_conduct.txt
*.dll *.dll

View file

@ -1 +1 @@
__pycache__ __pycache__

View file

@ -1,10 +1,10 @@
art\*.* art\*.*
charsets\*.* charsets\*.*
palettes\*.* palettes\*.*
games\*.* games\*.*
artscripts\*.arsc artscripts\*.arsc
formats\*.* formats\*.*
shaders\*.glsl shaders\*.glsl
ui\*.png ui\*.png
docs\html\*.* docs\html\*.*
docs\html\generated\*.* docs\html\generated\*.*

View file

@ -1,10 +1,10 @@
@echo off @echo off
set ZIP_EXE="c:\Program Files\7-Zip\7z.exe" set ZIP_EXE="c:\Program Files\7-Zip\7z.exe"
REM get version number from file REM get version number from file
set /p PLAYSCII_VERSION=<version set /p PLAYSCII_VERSION=<version
cd dist cd dist
del /Q playscii_win32*.zip del /Q playscii_win32*.zip
REM name zip according to version REM name zip according to version
%ZIP_EXE% a -r playscii_win32-%PLAYSCII_VERSION%.zip ./* %ZIP_EXE% a -r playscii_win32-%PLAYSCII_VERSION%.zip ./*
move playscii_win32-%PLAYSCII_VERSION%.zip ..\ move playscii_win32-%PLAYSCII_VERSION%.zip ..\
cd .. cd ..