add visual gear registration
authornemo
Thu, 02 Dec 2010 20:40:30 -0500
changeset 4453 15a483b2558a
parent 4452 258945553b18
child 4454 42bfc1a70968
add visual gear registration
hedgewars/uScript.pas
hedgewars/uUtils.pas
--- a/hedgewars/uScript.pas	Thu Dec 02 20:29:46 2010 -0500
+++ b/hedgewars/uScript.pas	Thu Dec 02 20:40:30 2010 -0500
@@ -1215,6 +1215,7 @@
 
 procedure initModule;
 var at : TGearType;
+    vgt: TVisualGearType;
     am : TAmmoType;
     st : TSound;
     he: THogEffect;
@@ -1285,6 +1286,9 @@
 for at:= Low(TGearType) to High(TGearType) do
     ScriptSetInteger(EnumToStr(at), ord(at));
 
+for vgt:= Low(TVisualGearType) to High(TVisualGearType) do
+    ScriptSetInteger(EnumToStr(vgt), ord(vgt));
+
 // register sounds
 for st:= Low(TSound) to High(TSound) do
     ScriptSetInteger(EnumToStr(st), ord(st));
--- a/hedgewars/uUtils.pas	Thu Dec 02 20:29:46 2010 -0500
+++ b/hedgewars/uUtils.pas	Thu Dec 02 20:40:30 2010 -0500
@@ -8,6 +8,7 @@
 procedure SplitByChar(var a, b: ansistring; c: char);
 
 function  EnumToStr(const en : TGearType) : shortstring; overload;
+function  EnumToStr(const en : TVisualGearType) : shortstring; overload;
 function  EnumToStr(const en : TSound) : shortstring; overload;
 function  EnumToStr(const en : TAmmoType) : shortstring; overload;
 function  EnumToStr(const en : THogEffect) : shortstring; overload;
@@ -83,6 +84,10 @@
 begin
 EnumToStr:= GetEnumName(TypeInfo(TGearType), ord(en))
 end;
+function EnumToStr(const en : TVisualGearType) : shortstring; overload;
+begin
+EnumToStr:= GetEnumName(TypeInfo(TVisualGearType), ord(en))
+end;
 
 function EnumToStr(const en : TSound) : shortstring; overload;
 begin
@@ -340,4 +345,4 @@
 {$ENDIF}
 end;
 
-end.
\ No newline at end of file
+end.