forked from sm64-port/sm64_3ds
-
Notifications
You must be signed in to change notification settings - Fork 0
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
n64
committed
Jul 29, 2020
0 parents
commit 849f791
Showing
3,204 changed files
with
701,085 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
IndentWidth: 4 | ||
Language: Cpp | ||
AlignAfterOpenBracket: Align | ||
SortIncludes: false | ||
ColumnLimit: 104 | ||
PointerAlignment: Right | ||
AllowShortFunctionsOnASingleLine: false | ||
AllowShortIfStatementsOnASingleLine: false | ||
BinPackArguments: true | ||
BinPackParameters: true | ||
SpaceAfterCStyleCast: true | ||
BreakBeforeBraces: Attach | ||
BreakBeforeTernaryOperators: true | ||
BreakBeforeBinaryOperators: NonAssignment | ||
Cpp11BracedListStyle: false | ||
IndentCaseLabels: true | ||
AlignTrailingComments: true | ||
UseTab: Never |
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,6 @@ | ||
--- | ||
Checks: '-*,readability-braces-around-statements' | ||
WarningsAsErrors: '' | ||
HeaderFilterRegex: '(src|include|enhancements)\/.*\.h$' | ||
FormatStyle: 'file' | ||
CheckOptions: |
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,23 @@ | ||
# Set the default behavior, in case people don't have core.autocrlf set. | ||
* text=auto | ||
|
||
# List text files in case git doesn't characterize correctly | ||
*.c text | ||
*.h text | ||
*.s text | ||
*.in text | ||
*.js text | ||
*.md text | ||
*.py text | ||
*.sh text | ||
*.ld text | ||
*.inc text | ||
*.txt text | ||
*.json text | ||
*.yaml text | ||
|
||
# Same for binary | ||
*.bin binary | ||
*.m64 binary | ||
*.png binary | ||
*.aiff binary |
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,74 @@ | ||
# Object files | ||
*.o | ||
*.obj | ||
*.elf | ||
|
||
# Linker output | ||
*.ilk | ||
*.exp | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Libraries | ||
*.a | ||
*.la | ||
*.lo | ||
|
||
# Shared objects (inc. Windows DLLs) | ||
*.dll | ||
*.so | ||
*.so.* | ||
*.dylib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
*.hex | ||
|
||
# Debug files | ||
*.dSYM/ | ||
*.su | ||
*.idb | ||
*.pdb | ||
|
||
# datadump | ||
/tools/ddump/* | ||
|
||
# Text editor remnants | ||
*.swp | ||
.vscode/* | ||
|
||
# General project-specific ignores | ||
__pycache__/* | ||
doxygen/doxygen/* | ||
build/* | ||
*.dump | ||
*.mio0 | ||
*.z64 | ||
*.map | ||
.assets-local.txt | ||
sm64_save_file.bin | ||
sm64config.txt | ||
|
||
# Assets. Generally ignored, but ones with "custom" in the name are fine. | ||
/levels/**/*.png | ||
/actors/**/*.png | ||
/textures/**/*.png | ||
/assets/**/*.bin | ||
/sound/**/*.m64 | ||
/sound/**/*.aiff | ||
!/levels/**/*custom*.png | ||
!/levels/**/*custom*/**/*.png | ||
!/actors/**/*custom*.png | ||
!/actors/**/*custom*/**/*.png | ||
!/textures/**/*custom*.png | ||
!/textures/**/*custom*/**/*.png | ||
!/sound/**/*custom*.m64 | ||
!/sound/**/*custom*/**/*.m64 | ||
!/sound/**/*custom*.aiff | ||
!/sound/**/*custom*/**/*.aiff | ||
!/assets/**/*custom*.bin | ||
!/assets/**/*custom*/**/*.bin |
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,26 @@ | ||
FROM ubuntu:18.04 as build | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
binutils-mips-linux-gnu \ | ||
bsdmainutils \ | ||
build-essential \ | ||
libaudiofile-dev \ | ||
pkg-config \ | ||
python3 \ | ||
wget \ | ||
zlib1g-dev | ||
|
||
RUN wget \ | ||
https://github.com/n64decomp/qemu-irix/releases/download/v2.11-deb/qemu-irix-2.11.0-2169-g32ab296eef_amd64.deb \ | ||
-O qemu.deb && \ | ||
echo 8170f37cf03a08cc2d7c1c58f10d650ea0d158f711f6916da9364f6d8c85f741 qemu.deb | sha256sum --check && \ | ||
dpkg -i qemu.deb && \ | ||
rm qemu.deb | ||
|
||
RUN mkdir /sm64 | ||
WORKDIR /sm64 | ||
ENV PATH="/sm64/tools:${PATH}" | ||
|
||
CMD echo 'usage: docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 sm64 make VERSION=${VERSION:-us} -j4\n' \ | ||
'see https://github.com/n64decomp/sm64/blob/master/README.md for advanced usage' |
Oops, something went wrong.