ACE3/addons/fortify/functions/fnc_parseSide.sqf
Grim e06c6f7835
General - Replace toLower with toLowerANSI where applicable (#9790)
* General - Replace toLower with toLowerANSI where applicable

* whoops

Co-authored-by: PabstMirror <pabstmirror@gmail.com>

* Update addons/repair/functions/fnc_setHitPointDamage.sqf

Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>

* Update addons/repair/dev/draw_showRepairInfo.sqf

Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>

* Update addons/tagging/XEH_preStart.sqf

Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>

* Update addons/vehicle_damage/functions/fnc_handleCookoff.sqf

Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>

* Update addons/tagging/XEH_preStart.sqf

Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>

* comparment -> compartment

* Update fnc_showHud.sqf

* Update fnc_registerObjects.sqf

* Update addons/common/functions/fnc_cbaSettings_settingChanged.sqf

---------

Co-authored-by: PabstMirror <pabstmirror@gmail.com>
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
2024-03-07 22:08:13 +01:00

40 lines
755 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Kingsley
* Parses the given text and returns a side.
*
* Arguments:
* 0: Text <STRING>
*
* Return Value:
* Side <SIDE>
*
* Example:
* ["blufor"] call ace_fortify_fnc_parseSide;
* ["west"] call ace_fortify_fnc_parseSide;
* ["b"] call ace_fortify_fnc_parseSide;
*
* Public: Yes
*/
params ["_side"];
TRACE_1("parseSide",_side);
if (_side isEqualType sideUnknown) exitWith {_side};
private _char = toLowerANSI (_side select [0, 1]);
private _return = switch (_char) do {
case ("b");
case ("w"): {west};
case ("o");
case ("e"): {east};
case ("r");
case ("i"): {resistance};
case ("c"): {civilian};
default {sideUnknown};
};
TRACE_2("",_char,_return);
_return