-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into other-addon
- Loading branch information
Showing
51 changed files
with
209 additions
and
168 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
z\cav\addons\tagging |
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,16 @@ | ||
#define MACRO_GLUE(g1,g2) g1##g2 | ||
#define MACRO_TAG(name,col) class TRIPLES(Cav_Tagging,##name##_##col##,F) { \ | ||
displayName = CSTRING(TRIPLES(name,col,F)); \ | ||
requiredItem = QUOTE(MACRO_GLUE(ACE_Spraypaint,col)); \ | ||
textures[] = {QPATHTOF(UI\tags\tag_##name##_##col##_ca.paa)}; \ | ||
icon = QPATHTOF(UI\icons\icon_action_##name##_##col##_ca.paa); \ | ||
} | ||
|
||
class ACE_Tags { | ||
MACRO_TAG(Cav,Black); | ||
MACRO_TAG(Cav,Blue); | ||
MACRO_TAG(Cav,Green); | ||
MACRO_TAG(Cav,Red); | ||
MACRO_TAG(Cav,White); | ||
MACRO_TAG(Cav,Yellow); | ||
}; |
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
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,20 @@ | ||
#include "script_component.hpp" | ||
|
||
class CfgPatches { | ||
class ADDON { | ||
name = COMPONENT_NAME; | ||
units[] = {}; | ||
weapons[] = {}; | ||
requiredVersion = REQUIRED_VERSION; | ||
requiredAddons[] = { | ||
"cav_main", | ||
"cav_common" | ||
}; | ||
author = ECSTRING(Main,ModTeam); | ||
authors[] = {"Brostrom.A (Evul)"}; | ||
url = ECSTRING(Main,Url); | ||
VERSION_CONFIG; | ||
}; | ||
}; | ||
|
||
#include "ACE_Tags.hpp" |
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,5 @@ | ||
#define COMPONENT tagging | ||
#define COMPONENT_BEAUTIFIED Tagging | ||
|
||
#include "\z\cav\addons\main\script_mod.hpp" | ||
#include "\z\cav\addons\main\script_macros.hpp" |
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,22 @@ | ||
<Project name="Cav"> | ||
<Package name="Tagging"> | ||
<Key ID="STR_Cav_Tagging_Cav_Black_F"> | ||
<English>Cav</English> | ||
</Key> | ||
<Key ID="STR_Cav_Tagging_Cav_Blue_F"> | ||
<English>Cav</English> | ||
</Key> | ||
<Key ID="STR_Cav_Tagging_Cav_Green_F"> | ||
<English>Cav</English> | ||
</Key> | ||
<Key ID="STR_Cav_Tagging_Cav_Red_F"> | ||
<English>Cav</English> | ||
</Key> | ||
<Key ID="STR_Cav_Tagging_Cav_White_F"> | ||
<English>Cav</English> | ||
</Key> | ||
<Key ID="STR_Cav_Tagging_Cav_Yellow_F"> | ||
<English>Cav</English> | ||
</Key> | ||
</Package> | ||
</Project> |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
Binary file not shown.
Binary file not shown.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,73 @@ | ||
#define MACRO_ARLINGTON(var1,var2) \ | ||
class var1: UserTexture1m_F { \ | ||
_generalMacro = QUOTE(var1); \ | ||
scope = 2; \ | ||
scopeCurator = 2; \ | ||
displayName = CSTRING(var1); \ | ||
author = ECSTRING(main,modteam); \ | ||
editorPreview = QPATHTOF(data\arlington\var2.paa); \ | ||
\ | ||
hiddenSelectionsTextures[] = { \ | ||
QPATHTOF(data\arlington\var2.paa) \ | ||
};\ | ||
} | ||
|
||
// Side Labels | ||
class Cav_Arlington_Left_F: UserTexture_1x2_F { | ||
scope = 2; | ||
scopeCurator = 2; | ||
displayName = CSTRING(Cav_Arlington_Left_F); | ||
author = ECSTRING(main,modteam); | ||
editorPreview = QPATHTOF(data\arlington\Arlington_Left.paa); | ||
|
||
editorSubcategory = "Cav_EdSubcat_Arlington"; | ||
|
||
hiddenSelectionsTextures[] = { | ||
QPATHTOF(data\arlington\Arlington_Left.paa) | ||
}; | ||
}; | ||
class Cav_Arlington_Right_F: UserTexture_1x2_F { | ||
scope = 2; | ||
scopeCurator = 2; | ||
displayName = CSTRING(Cav_Arlington_Right_F); | ||
author = ECSTRING(main,modteam); | ||
editorPreview = QPATHTOF(data\arlington\Arlington_Right.paa); | ||
|
||
editorSubcategory = "Cav_EdSubcat_Arlington"; | ||
|
||
hiddenSelectionsTextures[] = { | ||
QPATHTOF(data\arlington\Arlington_Right.paa) | ||
}; | ||
}; | ||
|
||
// Arlington Textures | ||
MACRO_ARLINGTON(Cav_Arlington_Bowman_F,Arlington_Bowman_ca.paa); | ||
MACRO_ARLINGTON(Cav_Arlington_Britton_F,Arlington_Britton_ca.paa); | ||
MACRO_ARLINGTON(Cav_Arlington_Carter_F,Arlington_Carter_ca.paa); | ||
MACRO_ARLINGTON(Cav_Arlington_Cooper_F,Arlington_Cooper_ca.paa); | ||
MACRO_ARLINGTON(Cav_Arlington_Dornbierer_F,Arlington_Dornbierer_ca.paa); | ||
MACRO_ARLINGTON(Cav_Arlington_Krazee_F,Arlington_Krazee_ca.paa); | ||
MACRO_ARLINGTON(Cav_Arlington_Long_F,Arlington_Long_ca.paa); | ||
MACRO_ARLINGTON(Cav_Arlington_Mcgehee_F,Arlington_Mcgehee_ca.paa); | ||
MACRO_ARLINGTON(Cav_Arlington_MillerDC_F,Arlington_MillerDC_ca.paa); | ||
MACRO_ARLINGTON(Cav_Arlington_Muska_F,Arlington_Muska_ca.paa); | ||
MACRO_ARLINGTON(Cav_Arlington_Novak_F,Arlington_Novak_ca.paa); | ||
MACRO_ARLINGTON(Cav_Arlington_Raven_F,Arlington_Raven_ca.paa); | ||
MACRO_ARLINGTON(Cav_Arlington_Ronnie_F,Arlington_Ronnie_ca.paa); | ||
MACRO_ARLINGTON(Cav_Arlington_Tarkas_F,Arlington_Tarkas_ca.paa); | ||
MACRO_ARLINGTON(Cav_Arlington_Traycer_F,Arlington_Traycer_ca.paa); | ||
|
||
|
||
// Backwards compatability | ||
class Cav_Arlington_Left: Cav_Arlington_Left_F { scope = 1; scopeCurator = 1; }; | ||
class Cav_Arlington_Right: Cav_Arlington_Right_F { scope = 1; scopeCurator = 1; }; | ||
|
||
class Cav_Arlington_Britton: Cav_Arlington_Britton_F { scope = 1; scopeCurator = 1; }; | ||
class Cav_Arlington_Carter: Cav_Arlington_Carter_F { scope = 1; scopeCurator = 1; }; | ||
class Cav_Arlington_Krazee: Cav_Arlington_Krazee_F { scope = 1; scopeCurator = 1; }; | ||
class Cav_Arlington_Mcgehee: Cav_Arlington_Mcgehee_F { scope = 1; scopeCurator = 1; }; | ||
class Cav_Arlington_Novak: Cav_Arlington_Novak_F { scope = 1; scopeCurator = 1; }; | ||
class Cav_Arlington_Raven: Cav_Arlington_Raven_F { scope = 1; scopeCurator = 1; }; | ||
class Cav_Arlington_Ronnie: Cav_Arlington_Ronnie_F { scope = 1; scopeCurator = 1; }; | ||
class Cav_Arlington_Tarkas: Cav_Arlington_Tarkas_F { scope = 1; scopeCurator = 1; }; | ||
class Cav_Arlington_Traycer: Cav_Arlington_Traycer_F { scope = 1; scopeCurator = 1; }; |
Oops, something went wrong.