mirror of
https://github.com/jtgans/g13gui.git
synced 2025-06-20 00:14:09 -04:00
Remove a ton of unused stuff
Since the migration to the G13 Configurator for everything, most of these files have literally no use anymore. We can safely remove them from the project at this point.
This commit is contained in:
parent
ff25e01694
commit
8eb613dad2
168
.clang-format
168
.clang-format
@ -1,168 +0,0 @@
|
||||
---
|
||||
Language: Cpp
|
||||
BasedOnStyle: Google
|
||||
AccessModifierOffset: -1
|
||||
AlignAfterOpenBracket: Align
|
||||
AlignConsecutiveMacros: false
|
||||
AlignConsecutiveAssignments: false
|
||||
AlignConsecutiveDeclarations: false
|
||||
AlignEscapedNewlines: Left
|
||||
AlignOperands: true
|
||||
AlignTrailingComments: true
|
||||
AllowAllArgumentsOnNextLine: true
|
||||
AllowAllConstructorInitializersOnNextLine: false
|
||||
AllowAllParametersOfDeclarationOnNextLine: true
|
||||
AllowShortBlocksOnASingleLine: Never
|
||||
AllowShortCaseLabelsOnASingleLine: false
|
||||
AllowShortFunctionsOnASingleLine: false
|
||||
AllowShortLambdasOnASingleLine: All
|
||||
AllowShortIfStatementsOnASingleLine: WithoutElse
|
||||
AllowShortLoopsOnASingleLine: false
|
||||
AlwaysBreakAfterDefinitionReturnType: None
|
||||
AlwaysBreakAfterReturnType: None
|
||||
AlwaysBreakBeforeMultilineStrings: true
|
||||
AlwaysBreakTemplateDeclarations: Yes
|
||||
BinPackArguments: true
|
||||
BinPackParameters: true
|
||||
BraceWrapping:
|
||||
AfterCaseLabel: false
|
||||
AfterClass: false
|
||||
AfterControlStatement: false
|
||||
AfterEnum: false
|
||||
AfterFunction: false
|
||||
AfterNamespace: false
|
||||
AfterObjCDeclaration: false
|
||||
AfterStruct: false
|
||||
AfterUnion: false
|
||||
AfterExternBlock: false
|
||||
BeforeCatch: false
|
||||
BeforeElse: false
|
||||
IndentBraces: false
|
||||
SplitEmptyFunction: true
|
||||
SplitEmptyRecord: true
|
||||
SplitEmptyNamespace: true
|
||||
BreakBeforeBinaryOperators: None
|
||||
BreakBeforeBraces: Attach
|
||||
BreakBeforeInheritanceComma: false
|
||||
BreakInheritanceList: BeforeColon
|
||||
BreakBeforeTernaryOperators: true
|
||||
BreakConstructorInitializersBeforeComma: false
|
||||
BreakConstructorInitializers: BeforeColon
|
||||
BreakAfterJavaFieldAnnotations: false
|
||||
BreakStringLiterals: true
|
||||
ColumnLimit: 80
|
||||
CommentPragmas: '^ IWYU pragma:'
|
||||
CompactNamespaces: false
|
||||
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
||||
ConstructorInitializerIndentWidth: 4
|
||||
ContinuationIndentWidth: 4
|
||||
Cpp11BracedListStyle: true
|
||||
DeriveLineEnding: true
|
||||
DerivePointerAlignment: true
|
||||
DisableFormat: false
|
||||
ExperimentalAutoDetectBinPacking: false
|
||||
FixNamespaceComments: true
|
||||
ForEachMacros:
|
||||
- foreach
|
||||
- Q_FOREACH
|
||||
- BOOST_FOREACH
|
||||
IncludeBlocks: Regroup
|
||||
IncludeCategories:
|
||||
- Regex: '^<ext/.*\.h>'
|
||||
Priority: 2
|
||||
SortPriority: 0
|
||||
- Regex: '^<.*\.h>'
|
||||
Priority: 1
|
||||
SortPriority: 0
|
||||
- Regex: '^<.*'
|
||||
Priority: 2
|
||||
SortPriority: 0
|
||||
- Regex: '.*'
|
||||
Priority: 3
|
||||
SortPriority: 0
|
||||
IncludeIsMainRegex: '([-_](test|unittest))?$'
|
||||
IncludeIsMainSourceRegex: ''
|
||||
IndentCaseLabels: true
|
||||
IndentGotoLabels: true
|
||||
IndentPPDirectives: None
|
||||
IndentWidth: 2
|
||||
IndentWrappedFunctionNames: false
|
||||
JavaScriptQuotes: Leave
|
||||
JavaScriptWrapImports: true
|
||||
KeepEmptyLinesAtTheStartOfBlocks: false
|
||||
MacroBlockBegin: ''
|
||||
MacroBlockEnd: ''
|
||||
MaxEmptyLinesToKeep: 1
|
||||
NamespaceIndentation: None
|
||||
ObjCBinPackProtocolList: Never
|
||||
ObjCBlockIndentWidth: 2
|
||||
ObjCSpaceAfterProperty: false
|
||||
ObjCSpaceBeforeProtocolList: true
|
||||
PenaltyBreakAssignment: 2
|
||||
PenaltyBreakBeforeFirstCallParameter: 1
|
||||
PenaltyBreakComment: 300
|
||||
PenaltyBreakFirstLessLess: 120
|
||||
PenaltyBreakString: 1000
|
||||
PenaltyBreakTemplateDeclaration: 10
|
||||
PenaltyExcessCharacter: 1000000
|
||||
PenaltyReturnTypeOnItsOwnLine: 200
|
||||
PointerAlignment: Left
|
||||
RawStringFormats:
|
||||
- Language: Cpp
|
||||
Delimiters:
|
||||
- cc
|
||||
- CC
|
||||
- cpp
|
||||
- Cpp
|
||||
- CPP
|
||||
- 'c++'
|
||||
- 'C++'
|
||||
CanonicalDelimiter: ''
|
||||
BasedOnStyle: google
|
||||
- Language: TextProto
|
||||
Delimiters:
|
||||
- pb
|
||||
- PB
|
||||
- proto
|
||||
- PROTO
|
||||
EnclosingFunctions:
|
||||
- EqualsProto
|
||||
- EquivToProto
|
||||
- PARSE_PARTIAL_TEXT_PROTO
|
||||
- PARSE_TEST_PROTO
|
||||
- PARSE_TEXT_PROTO
|
||||
- ParseTextOrDie
|
||||
- ParseTextProtoOrDie
|
||||
CanonicalDelimiter: ''
|
||||
BasedOnStyle: google
|
||||
ReflowComments: true
|
||||
SortIncludes: true
|
||||
SortUsingDeclarations: true
|
||||
SpaceAfterCStyleCast: false
|
||||
SpaceAfterLogicalNot: false
|
||||
SpaceAfterTemplateKeyword: true
|
||||
SpaceBeforeAssignmentOperators: true
|
||||
SpaceBeforeCpp11BracedList: false
|
||||
SpaceBeforeCtorInitializerColon: true
|
||||
SpaceBeforeInheritanceColon: true
|
||||
SpaceBeforeParens: ControlStatements
|
||||
SpaceBeforeRangeBasedForLoopColon: true
|
||||
SpaceInEmptyBlock: false
|
||||
SpaceInEmptyParentheses: false
|
||||
SpacesBeforeTrailingComments: 2
|
||||
SpacesInAngles: false
|
||||
SpacesInConditionalStatement: false
|
||||
SpacesInContainerLiterals: true
|
||||
SpacesInCStyleCastParentheses: false
|
||||
SpacesInParentheses: false
|
||||
SpacesInSquareBrackets: false
|
||||
SpaceBeforeSquareBrackets: false
|
||||
Standard: Auto
|
||||
StatementMacros:
|
||||
- Q_UNUSED
|
||||
- QT_REQUIRE_VERSION
|
||||
TabWidth: 8
|
||||
UseCRLF: false
|
||||
UseTab: Never
|
||||
...
|
||||
|
@ -1,26 +0,0 @@
|
||||
bind G1 KEY_F1
|
||||
bind G2 KEY_F2
|
||||
bind G3 KEY_F3
|
||||
bind G4 KEY_F4
|
||||
bind G5 KEY_F5
|
||||
bind G6 KEY_F6
|
||||
bind G7 KEY_F7
|
||||
bind G8 KEY_T # show info
|
||||
bind G9 KEY_S # warp to
|
||||
bind G10 KEY_Q # approach
|
||||
bind G11 KEY_A # align to
|
||||
bind G12 KEY_W # orbit
|
||||
bind G13 KEY_E # keep at range
|
||||
bind G15 KEY_LEFTSHIFT
|
||||
bind G16 KEY_F # drones engage
|
||||
bind G17 KEY_G # drones return and orbit
|
||||
bind G18 KEY_H # drones return to drone bay
|
||||
bind G19 KEY_LEFTCTRL
|
||||
bind G20 KEY_LEFTALT
|
||||
bind G22 KEY_LEFTCTRL
|
||||
bind LEFT KEY_KPPLUS
|
||||
bind DOWN KEY_KPMINUS
|
||||
bind STICK_LEFT KEY_RIGHT
|
||||
bind STICK_RIGHT KEY_LEFT
|
||||
bind STICK_UP KEY_UP
|
||||
bind STICK_DOWN KEY_DOWN
|
@ -1,7 +0,0 @@
|
||||
bind G12 KEY_U
|
||||
bind G11 KEY_E
|
||||
bind G10 KEY_O
|
||||
|
||||
|
||||
bind G9 KEY_A
|
||||
bind G13 KEY_H
|
@ -1,13 +0,0 @@
|
||||
bind G15 KEY_LEFTSHIFT
|
||||
bind G19 KEY_LEFTCTRL
|
||||
bind G22 KEY_LEFTALT
|
||||
bind G1 KEY_1
|
||||
bind G2 KEY_2
|
||||
bind G3 KEY_3
|
||||
bind G8 KEY_F3
|
||||
bind G9 KEY_F4
|
||||
bind G10 KEY_F5
|
||||
bind STICK_LEFT KEY_LEFT
|
||||
bind STICK_RIGHT KEY_RIGHT
|
||||
bind STICK_UP KEY_UP
|
||||
bind STICK_DOWN KEY_DOWN
|
@ -1,38 +0,0 @@
|
||||
bind G1 KEY_7
|
||||
bind G2 KEY_5
|
||||
bind G3 KEY_3
|
||||
bind G4 KEY_1
|
||||
bind G5 KEY_2
|
||||
bind G6 KEY_4
|
||||
bind G7 KEY_6
|
||||
bind G8 KEY_V
|
||||
bind G9 KEY_F
|
||||
bind G10 KEY_E
|
||||
bind G11 KEY_C
|
||||
bind G12 KEY_B
|
||||
bind G13 KEY_G
|
||||
bind G14 KEY_I
|
||||
bind G15 KEY_LEFTSHIFT
|
||||
bind G16 KEY_M
|
||||
bind G17 KEY_T
|
||||
bind G18 KEY_L
|
||||
bind G19 KEY_H
|
||||
bind G20 KEY_A
|
||||
bind G21 KEY_S
|
||||
bind G22 KEY_LEFTCTRL
|
||||
bind BD KEY_F1
|
||||
bind L1 KEY_N
|
||||
bind L2 KEY_R
|
||||
bind L3 KEY_P
|
||||
bind L4 KEY_K
|
||||
bind M1 KEY_D
|
||||
bind M2 KEY_X
|
||||
bind M3 KEY_Y
|
||||
bind MR KEY_Z
|
||||
bind LEFT KEY_TAB
|
||||
bind DOWN KEY_W
|
||||
bind TOP KEY_BACKSPACE
|
||||
bind STICK_LEFT KEY_LEFT
|
||||
bind STICK_RIGHT KEY_RIGHT
|
||||
bind STICK_UP KEY_UP
|
||||
bind STICK_DOWN KEY_DOWN
|
@ -1,19 +0,0 @@
|
||||
bind G1 KEY_1
|
||||
bind G2 KEY_2
|
||||
bind G3 KEY_3
|
||||
bind G4 KEY_W # walk forward
|
||||
bind G5 KEY_4
|
||||
bind G6 KEY_5
|
||||
bind G7 KEY_6
|
||||
bind G10 KEY_Q
|
||||
bind G11 KEY_S
|
||||
bind G12 KEY_E
|
||||
bind G15 KEY_SPACE
|
||||
bind G20 KEY_M # map
|
||||
bind G21 KEY_F1 # target self
|
||||
bind G22 KEY_LEFTALT
|
||||
bind G19 KEY_F3
|
||||
bind STICK_LEFT KEY_A
|
||||
bind STICK_RIGHT KEY_D
|
||||
bind STICK_UP KEY_W
|
||||
bind STICK_DOWN KEY_S
|
BIN
etc/g13.png
BIN
etc/g13.png
Binary file not shown.
Before Width: | Height: | Size: 335 KiB |
624
etc/g13.svg
624
etc/g13.svg
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 39 KiB |
BIN
etc/hello.lpbm
BIN
etc/hello.lpbm
Binary file not shown.
BIN
etc/logo.lpbm
BIN
etc/logo.lpbm
Binary file not shown.
Binary file not shown.
@ -1,3 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
find -name \*.cc -or -name \*.h |xargs clang-format -i
|
Loading…
Reference in New Issue
Block a user