-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
82 changed files
with
65 additions
and
18 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 0 additions & 14 deletions
14
gamemodes/jazztronauts/content/particles/particles_manifest.txt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import sys | ||
import pathlib | ||
|
||
if __name__ == "__main__": | ||
if (len(sys.argv) < 1): | ||
print("Not enough arguments") | ||
exit(1) | ||
|
||
output_file = sys.argv[1] | ||
zip_folder = sys.argv[2] | ||
|
||
f = open(output_file, "w") | ||
|
||
ZipDirectory = pathlib.Path(zip_folder) | ||
paths = ZipDirectory.rglob("*") | ||
|
||
for path in list(paths): | ||
if path.is_file(): | ||
f.write(str(path.relative_to(zip_folder)).replace("\\", "/")) | ||
f.write("\n") | ||
f.write(str(path.resolve())) | ||
|
||
print("all done") | ||
f.close() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@echo off | ||
SETLOCAL ENABLEDELAYEDEXPANSION | ||
|
||
rem Assumes we're running as a loosely installed addon in the garrysmod/addons/jazztronauts directory! | ||
set "BSPZIP=..\..\..\..\..\bin\bspzip.exe" | ||
set "BSPFOLDER=..\..\maps" | ||
set "ZIPFOLDER=..\..\bspzip" | ||
|
||
|
||
call:pakBspList jazz_bar | ||
call:pakBspList jazz_apartments | ||
|
||
goto:eof | ||
|
||
|
||
|
||
rem Package all the files in bspzip/<mapname> into <mapname>.bsp | ||
:pakBspList | ||
|
||
echo "Build tmp file list" | ||
python list.py %~1.txt "%ZIPFOLDER%\%~1" | ||
|
||
echo "Packing %~1.bsp" | ||
"%BSPZIP%" -addorupdatelist "%BSPFOLDER%/%~1.bsp" %~1.txt "%BSPFOLDER%/%~1.bsp" | ||
del %~1.txt | ||
|
||
goto:eof | ||
|
||
PAUSE | ||
ENDLOCAL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters