-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrected breaking bug with 2bpp or less tile formats; update to newe…
…r support headers; lots of housekeeping and modernizations
- Loading branch information
Showing
53 changed files
with
1,070 additions
and
960 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,47 @@ | ||
Language: Cpp | ||
BasedOnStyle: LLVM | ||
|
||
AlignAfterOpenBracket: DontAlign | ||
AlignOperands: Align | ||
AlignTrailingComments: true | ||
AllowAllArgumentsOnNextLine: true | ||
AllowAllConstructorInitializersOnNextLine: true | ||
AllowShortBlocksOnASingleLine: false | ||
AllowShortCaseLabelsOnASingleLine: false | ||
AllowShortFunctionsOnASingleLine: Empty | ||
AllowShortIfStatementsOnASingleLine: false | ||
BreakBeforeBraces: Custom | ||
AllowShortLoopsOnASingleLine: false | ||
AllowShortIfStatementsOnASingleLine: Never | ||
AlwaysBreakBeforeMultilineStrings: true | ||
AlwaysBreakTemplateDeclarations: Yes | ||
BreakConstructorInitializers: AfterColon | ||
BreakBeforeBraces: Allman | ||
BreakBeforeTernaryOperators: true | ||
BreakConstructorInitializers: AfterColon | ||
BinPackArguments: false | ||
BinPackParameters: false | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: false | ||
ContinuationIndentWidth: 2 | ||
Cpp11BracedListStyle: false | ||
Language: Cpp | ||
MaxEmptyLinesToKeep: 1 | ||
IndentCaseLabels: true | ||
PackConstructorInitializers: Never | ||
PointerAlignment: Middle | ||
ReferenceAlignment: Pointer | ||
SortIncludes: true | ||
SpaceAfterCStyleCast: true | ||
SpaceAfterLogicalNot: true | ||
SpaceAroundPointerQualifiers: Both | ||
SpaceBeforeAssignmentOperators: true | ||
SpaceBeforeCpp11BracedList: true | ||
SpaceBeforeCtorInitializerColon: true | ||
SpaceBeforeInheritanceColon: true | ||
SpaceBeforeRangeBasedForLoopColon: true | ||
SpaceBeforeParens: Never | ||
SpacesInAngles: false | ||
SpacesInCStyleCastParentheses: false | ||
SpacesInParentheses: false | ||
SpacesInSquareBrackets: false | ||
Standard: Cpp11 | ||
TabWidth: 2 | ||
UseTab: Always |
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,10 @@ | ||
CompileFlags: | ||
# Treat code as C++, use C++17 standard, enable more warnings. | ||
Add: [-xc++, -std=c++17, -Wall] | ||
Diagnostics: | ||
ClangTidy: | ||
Add: [performance*, modernize*] | ||
Remove: [modernize-use-trailing-return-type,] | ||
CheckOptions: | ||
readability-identifier-naming.VariableCase: SnakeCase | ||
|
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,6 +1,5 @@ | ||
build/ | ||
bin/ | ||
etc/ | ||
docs/ | ||
.vscode/ | ||
.clang-format | ||
.cache/ |
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 |
---|---|---|
|
@@ -4,14 +4,15 @@ | |
/* | ||
These values should be set within CMakeLists.txt | ||
*/ | ||
namespace APP { | ||
static unsigned int const VERSION_MAJOR{1}; | ||
static unsigned int const VERSION_MINOR{2}; | ||
static unsigned int const VERSION_PATCH{0}; | ||
static char const * VERSION{"1.2.0"}; | ||
namespace APP | ||
{ | ||
static unsigned int const VERSION_MAJOR { 1 }; | ||
static unsigned int const VERSION_MINOR { 3 }; | ||
static unsigned int const VERSION_PATCH { 0 }; | ||
static char const * VERSION { "1.3.0" }; | ||
|
||
static wchar_t const * NAME{L"chr2png"}; | ||
static wchar_t const * CONTACT{L"Damian R ([email protected])"}; | ||
static wchar_t const * WEBSITE{L"https://github.com/drojaazu"}; | ||
} | ||
static wchar_t const * NAME { L"chr2png" }; | ||
static wchar_t const * CONTACT { L"Damian R ([email protected])" }; | ||
static wchar_t const * WEBSITE { L"https://github.com/drojaazu" }; | ||
} // namespace APP | ||
#endif |
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.