-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #481 from CBATeam/cleanup-network2
Cleanup network component
- Loading branch information
Showing
9 changed files
with
58 additions
and
153 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,44 +1,16 @@ | ||
// ----------------------------------------------------------------------------- | ||
// Automatically generated by 'functions_config.rb' | ||
// DO NOT MANUALLY EDIT THIS FILE! | ||
// ----------------------------------------------------------------------------- | ||
|
||
class CfgFunctions | ||
{ | ||
class CBA | ||
{ | ||
class Network | ||
{ | ||
// CBA_fnc_globalExecute | ||
class globalExecute | ||
{ | ||
description = "Executes code on given destinations"; | ||
file = "\x\cba\addons\network\fnc_globalExecute.sqf"; | ||
}; | ||
// CBA_fnc_globalSay | ||
class globalSay | ||
{ | ||
description = "Says sound on all client computer"; | ||
file = "\x\cba\addons\network\fnc_globalSay.sqf"; | ||
}; | ||
// CBA_fnc_globalSay3d | ||
class globalSay3d | ||
{ | ||
description = "Says sound on all client computer in 3d"; | ||
file = "\x\cba\addons\network\fnc_globalSay3d.sqf"; | ||
}; | ||
// CBA_fnc_publicVariable | ||
class publicVariable | ||
{ | ||
description = "CBA_fnc_publicVariable does only broadcast the new value if it doesn't exist in missionNamespace or the new value is different to the one in missionNamespace. Checks also for different types. Nil as value gets always broadcasted."; | ||
file = "\x\cba\addons\network\fnc_publicVariable.sqf"; | ||
}; | ||
// CBA_fnc_setVarNet | ||
class setVarNet | ||
{ | ||
description = "Same as setVariable [""name"",var, true] but only broadcasts when the value of var is different to the one which is already saved in the variable space. Checks also for different types. Nil as value gets always broadcasted."; | ||
file = "\x\cba\addons\network\fnc_setVarNet.sqf"; | ||
}; | ||
#define F_FILEPATH(func) class func {\ | ||
file = QUOTE(PATHTOF(DOUBLES(fnc,func).sqf));\ | ||
} | ||
|
||
class CfgFunctions { | ||
class CBA { | ||
class Network { | ||
F_FILEPATH(globalExecute); | ||
F_FILEPATH(globalSay); | ||
F_FILEPATH(globalSay3d); | ||
F_FILEPATH(publicVariable); | ||
F_FILEPATH(setVarNet); | ||
}; | ||
}; | ||
}; |
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,8 @@ | ||
|
||
class CfgSettings { | ||
class CBA { | ||
class COMPONENT { | ||
disableGlobalExecute = 0; | ||
}; | ||
}; | ||
}; |
This file was deleted.
Oops, something went wrong.
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
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