mirror of
https://github.com/encounter/ww.git
synced 2026-07-11 06:18:49 -07:00
Reorganize includes & src, match 8 f_op TUs
This commit is contained in:
@@ -0,0 +1,87 @@
|
||||
---
|
||||
Language: Cpp
|
||||
Standard: C++03
|
||||
AccessModifierOffset: -4
|
||||
AlignAfterOpenBracket: Align
|
||||
AlignConsecutiveAssignments: false
|
||||
AlignConsecutiveDeclarations: false
|
||||
AlignOperands: true
|
||||
AlignTrailingComments: true
|
||||
AllowAllParametersOfDeclarationOnNextLine: true
|
||||
AllowShortBlocksOnASingleLine: false
|
||||
AllowShortCaseLabelsOnASingleLine: false
|
||||
AllowShortFunctionsOnASingleLine: Inline
|
||||
AllowShortIfStatementsOnASingleLine: false
|
||||
AllowShortLoopsOnASingleLine: false
|
||||
AlwaysBreakAfterDefinitionReturnType: None
|
||||
AlwaysBreakAfterReturnType: None
|
||||
AlwaysBreakBeforeMultilineStrings: false
|
||||
AlwaysBreakTemplateDeclarations: true
|
||||
BinPackArguments: true
|
||||
BinPackParameters: true
|
||||
BreakBeforeBinaryOperators: None
|
||||
BreakBeforeBraces: Custom
|
||||
BraceWrapping:
|
||||
AfterControlStatement: MultiLine
|
||||
AfterFunction: false
|
||||
AfterEnum: false
|
||||
AfterClass: false
|
||||
AfterCaseLabel: false
|
||||
AfterNamespace: false
|
||||
AfterStruct: false
|
||||
AfterUnion: false
|
||||
AfterExternBlock: false
|
||||
BeforeElse: false
|
||||
BeforeWhile: false
|
||||
BreakBeforeTernaryOperators: false
|
||||
BreakConstructorInitializersBeforeComma: false
|
||||
ColumnLimit: 100
|
||||
CommentPragmas: '^ (IWYU pragma:|NOLINT)'
|
||||
ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
||||
ConstructorInitializerIndentWidth: 4
|
||||
ContinuationIndentWidth: 4
|
||||
Cpp11BracedListStyle: true
|
||||
DerivePointerAlignment: false
|
||||
DisableFormat: false
|
||||
ForEachMacros: []
|
||||
IncludeCategories:
|
||||
- Regex: '^<[Ww]indows\.h>$'
|
||||
Priority: 1
|
||||
- Regex: '^<'
|
||||
Priority: 2
|
||||
- Regex: '^"'
|
||||
Priority: 3
|
||||
IndentCaseLabels: false
|
||||
IndentWidth: 4
|
||||
IndentWrappedFunctionNames: false
|
||||
KeepEmptyLinesAtTheStartOfBlocks: false
|
||||
MacroBlockBegin: ''
|
||||
MacroBlockEnd: ''
|
||||
MaxEmptyLinesToKeep: 1
|
||||
NamespaceIndentation: None
|
||||
ObjCBlockIndentWidth: 4
|
||||
ObjCSpaceAfterProperty: false
|
||||
ObjCSpaceBeforeProtocolList: true
|
||||
PenaltyBreakBeforeFirstCallParameter: 19
|
||||
PenaltyBreakComment: 300
|
||||
PenaltyBreakFirstLessLess: 120
|
||||
PenaltyBreakString: 1000
|
||||
PenaltyExcessCharacter: 1000000
|
||||
PenaltyReturnTypeOnItsOwnLine: 60
|
||||
PointerAlignment: Left
|
||||
ReferenceAlignment: Left
|
||||
ReflowComments: true
|
||||
SortIncludes: true
|
||||
SpaceAfterCStyleCast: false
|
||||
SpaceBeforeAssignmentOperators: true
|
||||
SpaceBeforeParens: ControlStatements
|
||||
SpaceInEmptyParentheses: false
|
||||
SpacesBeforeTrailingComments: 2
|
||||
SpacesInAngles: false
|
||||
SpacesInContainerLiterals: true
|
||||
SpacesInCStyleCastParentheses: false
|
||||
SpacesInParentheses: false
|
||||
SpacesInSquareBrackets: false
|
||||
TabWidth: 4
|
||||
UseTab: false
|
||||
...
|
||||
+1
-1
@@ -10,4 +10,4 @@
|
||||
*.sha1 text eol=lf
|
||||
|
||||
# DTK keeps these files with LF
|
||||
config/*/*.txt text eol=lf
|
||||
config/**/*.txt text eol=lf
|
||||
|
||||
Vendored
+22
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Linux",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/include/**"
|
||||
],
|
||||
"cStandard": "c99",
|
||||
"cppStandard": "c++98",
|
||||
"intelliSenseMode": "linux-clang-x86",
|
||||
"compilerPath": "",
|
||||
"configurationProvider": "ms-vscode.makefile-tools",
|
||||
"browse": {
|
||||
"path": [
|
||||
"${workspaceFolder}/include"
|
||||
],
|
||||
"limitSymbolsToIncludedHeaders": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"ms-vscode.cpptools",
|
||||
"xaver.clang-format",
|
||||
"ms-python.black-formatter"
|
||||
]
|
||||
}
|
||||
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"[c]": {
|
||||
"files.encoding": "shiftjis",
|
||||
"editor.defaultFormatter": "xaver.clang-format"
|
||||
},
|
||||
"[cpp]": {
|
||||
"files.encoding": "shiftjis",
|
||||
"editor.defaultFormatter": "xaver.clang-format"
|
||||
},
|
||||
"[python]":{
|
||||
"editor.defaultFormatter": "ms-python.black-formatter"
|
||||
},
|
||||
"editor.tabSize": 2,
|
||||
"files.autoSave": "onFocusChange",
|
||||
"files.insertFinalNewline": true,
|
||||
"files.trimFinalNewlines": true,
|
||||
"search.useIgnoreFiles": false,
|
||||
}
|
||||
@@ -14,7 +14,7 @@ REL/global_destructor_chain.c:
|
||||
.dtors start:0x00000000 end:0x00000008
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d_a_acorn_leaf.o:
|
||||
d/a/d_a_acorn_leaf.cpp:
|
||||
.text start:0x000000EC end:0x00000E60
|
||||
.text start:0x00000E60 end:0x00000E60
|
||||
.text start:0x00000E60 end:0x00000EDC
|
||||
|
||||
@@ -9,7 +9,7 @@ Sections:
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x00000078
|
||||
|
||||
d_a_agbsw0.o:
|
||||
d/a/d_a_agbsw0.cpp:
|
||||
.text start:0x00000078 end:0x000057B0
|
||||
.rodata start:0x00000000 end:0x0000009D
|
||||
.data start:0x00000000 end:0x00000574
|
||||
|
||||
@@ -7,6 +7,6 @@ Sections:
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x00000078
|
||||
|
||||
d_a_alldie.o:
|
||||
d/a/d_a_alldie.cpp:
|
||||
.text start:0x00000078 end:0x000002CC
|
||||
.data start:0x00000000 end:0x00000050
|
||||
|
||||
@@ -8,7 +8,7 @@ Sections:
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x00000078
|
||||
|
||||
d_a_am.o:
|
||||
d/a/d_a_am.cpp:
|
||||
.text start:0x00000078 end:0x00004B00
|
||||
.rodata start:0x00000000 end:0x000000B8
|
||||
.data start:0x00000000 end:0x000004C4
|
||||
|
||||
@@ -8,7 +8,7 @@ Sections:
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x00000078
|
||||
|
||||
d_a_am2.o:
|
||||
d/a/d_a_am2.cpp:
|
||||
.text start:0x00000078 end:0x00004DA8
|
||||
.rodata start:0x00000000 end:0x000000C2
|
||||
.data start:0x00000000 end:0x000004D4
|
||||
|
||||
@@ -8,7 +8,7 @@ Sections:
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x00000078
|
||||
|
||||
d_a_amiprop.o:
|
||||
d/a/d_a_amiprop.cpp:
|
||||
.text start:0x00000078 end:0x00000AB4
|
||||
.rodata start:0x00000000 end:0x00000048
|
||||
.data start:0x00000000 end:0x00000188
|
||||
|
||||
@@ -8,7 +8,7 @@ Sections:
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x00000078
|
||||
|
||||
d_a_andsw0.o:
|
||||
d/a/d_a_andsw0.cpp:
|
||||
.text start:0x00000078 end:0x00000A64
|
||||
.data start:0x00000000 end:0x000000CC
|
||||
.bss start:0x00000000 end:0x00000020
|
||||
|
||||
@@ -7,6 +7,6 @@ Sections:
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x00000078
|
||||
|
||||
d_a_andsw2.o:
|
||||
d/a/d_a_andsw2.cpp:
|
||||
.text start:0x00000078 end:0x00000724
|
||||
.data start:0x00000000 end:0x00000068
|
||||
|
||||
@@ -14,7 +14,7 @@ REL/global_destructor_chain.c:
|
||||
.dtors start:0x00000000 end:0x00000008
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d_a_arrow_iceeff.o:
|
||||
d/a/d_a_arrow_iceeff.cpp:
|
||||
.text start:0x000000EC end:0x00001058
|
||||
.rodata start:0x00000000 end:0x00000083
|
||||
.data start:0x00000000 end:0x00000068
|
||||
|
||||
@@ -8,7 +8,7 @@ Sections:
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x00000078
|
||||
|
||||
d_a_arrow_lighteff.o:
|
||||
d/a/d_a_arrow_lighteff.cpp:
|
||||
.text start:0x00000078 end:0x000011AC
|
||||
.rodata start:0x00000000 end:0x000000AE
|
||||
.data start:0x00000000 end:0x00000074
|
||||
|
||||
@@ -8,7 +8,7 @@ Sections:
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x00000078
|
||||
|
||||
d_a_atdoor.o:
|
||||
d/a/d_a_atdoor.cpp:
|
||||
.text start:0x00000078 end:0x0000072C
|
||||
.rodata start:0x00000000 end:0x00000039
|
||||
.data start:0x00000000 end:0x00000064
|
||||
|
||||
@@ -14,7 +14,7 @@ REL/global_destructor_chain.c:
|
||||
.dtors start:0x00000000 end:0x00000008
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d_a_att.o:
|
||||
d/a/d_a_att.cpp:
|
||||
.text start:0x000000EC end:0x00000CE4
|
||||
.ctors start:0x00000000 end:0x00000008
|
||||
.rodata start:0x00000000 end:0x00000018
|
||||
|
||||
@@ -14,7 +14,7 @@ REL/global_destructor_chain.c:
|
||||
.dtors start:0x00000000 end:0x00000008
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d_a_auction.o:
|
||||
d/a/d_a_auction.cpp:
|
||||
.text start:0x000000EC end:0x00003C90
|
||||
.text start:0x00003C90 end:0x0000416C
|
||||
.ctors start:0x00000000 end:0x00000008
|
||||
|
||||
@@ -14,7 +14,7 @@ REL/global_destructor_chain.c:
|
||||
.dtors start:0x00000000 end:0x00000008
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d_a_bb.o:
|
||||
d/a/d_a_bb.cpp:
|
||||
.text start:0x000000EC end:0x00008DF8
|
||||
.text start:0x00008DF8 end:0x00008DF8
|
||||
.ctors start:0x00000000 end:0x00000008
|
||||
|
||||
@@ -14,7 +14,7 @@ REL/global_destructor_chain.c:
|
||||
.dtors start:0x00000000 end:0x00000008
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d_a_bdk.o:
|
||||
d/a/d_a_bdk.cpp:
|
||||
.text start:0x000000EC end:0x0000DDB4
|
||||
.text start:0x0000DDB4 end:0x0000DDB4
|
||||
.ctors start:0x00000000 end:0x00000008
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user