-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from MarkMichon1/staging
merge staging to master
- Loading branch information
Showing
39 changed files
with
1,277 additions
and
630 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,27 @@ | ||
# This gets changed every new version. It is included in the ASCII part of the stream header for diagnostic and | ||
# debugging purposes. | ||
BG_VERSION = "1.0" | ||
|
||
VALID_VIDEO_FORMATS = ['.avi', '.flv', '.mov', '.mp4', '.wmv'] | ||
VALID_IMAGE_FORMATS = ['.bmp', '.jpg', '.png'] | ||
# Dev note- this gets updated at version change. This is included in ASCII stream header for debugging purposes. | ||
BG_VERSION = "1.0" | ||
|
||
# Default folder paths | ||
WRITE_PATH = 'Temp' | ||
READ_PATH = 'Partial Saves' | ||
|
||
# Crypto | ||
SCRYPT_N_DEFAULT = 14 | ||
SCRYPT_R_DEFAULT = 8 | ||
SCRYPT_P_DEFAULT = 1 | ||
|
||
# Read specific | ||
BAD_FRAME_STRIKES = 10 | ||
VALID_VIDEO_FORMATS = ['.avi', '.flv', '.mov', '.mp4', '.wmv'] | ||
VALID_IMAGE_FORMATS = ['.bmp', '.jpg', '.png'] | ||
|
||
# Write specific | ||
HEADER_PALETTE_ID ='4' | ||
STREAM_PALETTE_ID ='4' | ||
PIXEL_WIDTH = 20 | ||
BLOCK_HEIGHT = 54 | ||
BLOCK_WIDTH = 96 | ||
HEADER_PALETTE_ID ='6' | ||
STREAM_PALETTE_ID ='6' | ||
PIXEL_WIDTH = 24 | ||
BLOCK_HEIGHT = 45 | ||
BLOCK_WIDTH = 80 | ||
FRAMES_PER_SECOND = 30 |
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
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
Oops, something went wrong.