diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-08-31 23:14:58 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-08-31 23:14:58 +0100 |
commit | 9a96d0bff56f1969c68bb52a2f33296095bdc67d (patch) | |
tree | 4175928e488632705692e3cccafa1a38dd854615 /Northstar.CustomServers/mod/scripts/vscripts/_vscript.gnut | |
parent | 27bd240871b7c0f2f49fef137718b2e3c208e3b4 (diff) | |
download | NorthstarMods-9a96d0bff56f1969c68bb52a2f33296095bdc67d.tar.gz NorthstarMods-9a96d0bff56f1969c68bb52a2f33296095bdc67d.zip |
move to new mod format
Diffstat (limited to 'Northstar.CustomServers/mod/scripts/vscripts/_vscript.gnut')
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/_vscript.gnut | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/_vscript.gnut b/Northstar.CustomServers/mod/scripts/vscripts/_vscript.gnut new file mode 100644 index 00000000..52b69c5d --- /dev/null +++ b/Northstar.CustomServers/mod/scripts/vscripts/_vscript.gnut @@ -0,0 +1,84 @@ +untyped + +//========== Copyright © 2008, Valve Corporation, All rights reserved. ======== + +global function UniqueString +global function EntFire +global function __DumpScope + + +int __uniqueStringId = 0 +string function UniqueString( string str = "" ) +{ + return str + "_us" + __uniqueStringId++; +} + +function EntFire( target, action, value = null, delay = 0.0, activator = null ) +{ + if ( !value ) + { + value = ""; + } + + local caller = null; + if ( "self" in this ) + { + caller = this.self; + if ( !activator ) + { + activator = this.self; + } + } + + DoEntFire( string( target ), string( action ), string( value ), delay, activator, caller ); +} + +//--------------------------------------------------------- +// Text dump this scope's contents to the console. +//--------------------------------------------------------- +void function __DumpScope( int depth, var Table ) +{ + local indent=function( count ) + { + local i; + for( i = 0 ; i < count ; i++ ) + { + print(" "); + } + } + + foreach(key, value in Table) + { + indent(depth); + print( key ); + switch (type(value)) + { + case "table": + print("(TABLE)\n"); + indent(depth); + print("{\n"); + __DumpScope( depth + 1, value); + indent(depth); + print("}"); + break; + case "array": + print("(ARRAY)\n"); + indent(depth); + print("[\n") + __DumpScope( depth + 1, value); + indent(depth); + print("]"); + break; + case "string": + print(" = \""); + print(value); + print("\""); + break; + default: + print(" = "); + print(value); + break; + } + print("\n"); + } +} |