Fix initial source commit
This commit is contained in:
parent
0cbb1ef05a
commit
07a5d0b6d0
9 changed files with 9785 additions and 9785 deletions
88
README.md
88
README.md
|
|
@ -1,44 +1,44 @@
|
|||
# PLAYSCII - an ASCII art and game creation tool
|
||||
|
||||
Playscii (pronounced play-skee) is an art, animation, and game creation tool.
|
||||
The latest version will always be available here:
|
||||
|
||||
* [http://jp.itch.io/playscii](http://jp.itch.io/playscii)
|
||||
* [https://heptapod.host/jp-lebreton/playscii](https://heptapod.host/jp-lebreton/playscii)
|
||||
|
||||
Playscii's main website is here:
|
||||
|
||||
* [https://jplebreton.com/playscii/](https://jplebreton.com/playscii/)
|
||||
|
||||
## Offline documentation
|
||||
|
||||
Playscii now includes its own HTML documentation, which you can find in the
|
||||
docs/html/ subfolder of the folder where this README resides.
|
||||
|
||||
## Online documentation
|
||||
|
||||
The latest version of the HTML documentation resides here:
|
||||
|
||||
[https://jplebreton.com/playscii/howto_main.html](https://jplebreton.com/playscii/howto_main.html)
|
||||
|
||||
## Bugs
|
||||
|
||||
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)
|
||||
|
||||
## Roadmap
|
||||
|
||||
For possible future features see Playscii's Trello:
|
||||
|
||||
[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
|
||||
on there especially valuable, feel free to vote or comment!
|
||||
|
||||
## Contact
|
||||
|
||||
If you've made something cool with Playscii and/or have any suggestions on how
|
||||
to improve it, please let JP know!
|
||||
|
||||
[https://jplebreton.com/#contact_email](https://jplebreton.com/#contact_email)
|
||||
# PLAYSCII - an ASCII art and game creation tool
|
||||
|
||||
Playscii (pronounced play-skee) is an art, animation, and game creation tool.
|
||||
The latest version will always be available here:
|
||||
|
||||
* [http://jp.itch.io/playscii](http://jp.itch.io/playscii)
|
||||
* [https://heptapod.host/jp-lebreton/playscii](https://heptapod.host/jp-lebreton/playscii)
|
||||
|
||||
Playscii's main website is here:
|
||||
|
||||
* [https://jplebreton.com/playscii/](https://jplebreton.com/playscii/)
|
||||
|
||||
## Offline documentation
|
||||
|
||||
Playscii now includes its own HTML documentation, which you can find in the
|
||||
docs/html/ subfolder of the folder where this README resides.
|
||||
|
||||
## Online documentation
|
||||
|
||||
The latest version of the HTML documentation resides here:
|
||||
|
||||
[https://jplebreton.com/playscii/howto_main.html](https://jplebreton.com/playscii/howto_main.html)
|
||||
|
||||
## Bugs
|
||||
|
||||
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)
|
||||
|
||||
## Roadmap
|
||||
|
||||
For possible future features see Playscii's Trello:
|
||||
|
||||
[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
|
||||
on there especially valuable, feel free to vote or comment!
|
||||
|
||||
## Contact
|
||||
|
||||
If you've made something cool with Playscii and/or have any suggestions on how
|
||||
to improve it, please let JP know!
|
||||
|
||||
[https://jplebreton.com/#contact_email](https://jplebreton.com/#contact_email)
|
||||
|
|
|
|||
19260
art/new.psci
19260
art/new.psci
File diff suppressed because it is too large
Load diff
|
|
@ -1,37 +1,37 @@
|
|||
@echo off
|
||||
|
||||
set BUILD_EXE_PATH=dist\playscii.exe
|
||||
set OUTPUT_DIR=dist\playscii\
|
||||
set ICON_PATH=ui\playscii.ico
|
||||
set XCOPY_INCLUDE=win_xcopy_include
|
||||
set XCOPY_EXCLUDE=win_xcopy_exclude
|
||||
set COPY_INCLUDE=win_copy_include
|
||||
|
||||
echo Creating new build...
|
||||
|
||||
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
|
||||
echo Build done!
|
||||
|
||||
REM ==== move build so that ZIP will have a subdir enclosing everything
|
||||
mkdir %OUTPUT_DIR%
|
||||
move %BUILD_EXE_PATH% %OUTPUT_DIR%
|
||||
|
||||
echo -----------
|
||||
|
||||
echo Copying external files...
|
||||
REM ==== xcopy dirs recursively
|
||||
for /f "tokens=*" %%i in (%XCOPY_INCLUDE%) DO (
|
||||
echo %%i
|
||||
xcopy /E/Y "%%i" "%OUTPUT_DIR%\%%i" /exclude:%XCOPY_EXCLUDE%
|
||||
)
|
||||
REM ==== regular copy files (non-recursively)
|
||||
for /f "tokens=*" %%i in (%COPY_INCLUDE%) DO (
|
||||
echo %%i
|
||||
copy /Y "%%i" %OUTPUT_DIR% > NUL
|
||||
)
|
||||
|
||||
echo -----------
|
||||
echo Done!
|
||||
|
||||
pause
|
||||
@echo off
|
||||
|
||||
set BUILD_EXE_PATH=dist\playscii.exe
|
||||
set OUTPUT_DIR=dist\playscii\
|
||||
set ICON_PATH=ui\playscii.ico
|
||||
set XCOPY_INCLUDE=win_xcopy_include
|
||||
set XCOPY_EXCLUDE=win_xcopy_exclude
|
||||
set COPY_INCLUDE=win_copy_include
|
||||
|
||||
echo Creating new build...
|
||||
|
||||
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
|
||||
echo Build done!
|
||||
|
||||
REM ==== move build so that ZIP will have a subdir enclosing everything
|
||||
mkdir %OUTPUT_DIR%
|
||||
move %BUILD_EXE_PATH% %OUTPUT_DIR%
|
||||
|
||||
echo -----------
|
||||
|
||||
echo Copying external files...
|
||||
REM ==== xcopy dirs recursively
|
||||
for /f "tokens=*" %%i in (%XCOPY_INCLUDE%) DO (
|
||||
echo %%i
|
||||
xcopy /E/Y "%%i" "%OUTPUT_DIR%\%%i" /exclude:%XCOPY_EXCLUDE%
|
||||
)
|
||||
REM ==== regular copy files (non-recursively)
|
||||
for /f "tokens=*" %%i in (%COPY_INCLUDE%) DO (
|
||||
echo %%i
|
||||
copy /Y "%%i" %OUTPUT_DIR% > NUL
|
||||
)
|
||||
|
||||
echo -----------
|
||||
echo Done!
|
||||
|
||||
pause
|
||||
|
|
|
|||
|
|
@ -1,27 +1,27 @@
|
|||
// Mattel Intellivision (built-in)
|
||||
intellivision.png
|
||||
16, 14
|
||||
!"#$%&'()*+,-./
|
||||
0123456789:;<=>?
|
||||
@ABCDEFGHIJKLMNO
|
||||
PQRSTUVWXYZ[\]^
|
||||
`abcdefghijklmno
|
||||
pqrstuvwxyz{|}~
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Mattel Intellivision (built-in)
|
||||
intellivision.png
|
||||
16, 14
|
||||
!"#$%&'()*+,-./
|
||||
0123456789:;<=>?
|
||||
@ABCDEFGHIJKLMNO
|
||||
PQRSTUVWXYZ[\]^
|
||||
`abcdefghijklmno
|
||||
pqrstuvwxyz{|}~
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
42
license.txt
42
license.txt
|
|
@ -1,21 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2014-2022 JP LeBreton
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
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
|
||||
THE SOFTWARE.
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2014-2022 JP LeBreton
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
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
|
||||
THE SOFTWARE.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
version
|
||||
*.default
|
||||
README.md
|
||||
license.txt
|
||||
code_of_conduct.txt
|
||||
*.dll
|
||||
version
|
||||
*.default
|
||||
README.md
|
||||
license.txt
|
||||
code_of_conduct.txt
|
||||
*.dll
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__pycache__
|
||||
__pycache__
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
art\*.*
|
||||
charsets\*.*
|
||||
palettes\*.*
|
||||
games\*.*
|
||||
artscripts\*.arsc
|
||||
formats\*.*
|
||||
shaders\*.glsl
|
||||
ui\*.png
|
||||
docs\html\*.*
|
||||
docs\html\generated\*.*
|
||||
art\*.*
|
||||
charsets\*.*
|
||||
palettes\*.*
|
||||
games\*.*
|
||||
artscripts\*.arsc
|
||||
formats\*.*
|
||||
shaders\*.glsl
|
||||
ui\*.png
|
||||
docs\html\*.*
|
||||
docs\html\generated\*.*
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
@echo off
|
||||
set ZIP_EXE="c:\Program Files\7-Zip\7z.exe"
|
||||
REM get version number from file
|
||||
set /p PLAYSCII_VERSION=<version
|
||||
cd dist
|
||||
del /Q playscii_win32*.zip
|
||||
REM name zip according to version
|
||||
%ZIP_EXE% a -r playscii_win32-%PLAYSCII_VERSION%.zip ./*
|
||||
move playscii_win32-%PLAYSCII_VERSION%.zip ..\
|
||||
@echo off
|
||||
set ZIP_EXE="c:\Program Files\7-Zip\7z.exe"
|
||||
REM get version number from file
|
||||
set /p PLAYSCII_VERSION=<version
|
||||
cd dist
|
||||
del /Q playscii_win32*.zip
|
||||
REM name zip according to version
|
||||
%ZIP_EXE% a -r playscii_win32-%PLAYSCII_VERSION%.zip ./*
|
||||
move playscii_win32-%PLAYSCII_VERSION%.zip ..\
|
||||
cd ..
|
||||
Loading…
Reference in a new issue