|
1 |
| -// Cortex SC2 Roleplaying Engine |
2 |
| -// Copyright (C) 2009-2010 <http://www.cortexrp.com/> |
| 1 | +// Cortex SC2 Roleplaying Engine |
| 2 | +// Copyright (C) 2009-2010 <http://www.cortexrp.com/> |
3 | 3 | //
|
4 |
| -// This program is free software; you can redistribute it and/or modify |
5 |
| -// it under the terms of the GNU General Public License as published by |
6 |
| -// the Free Software Foundation; version 2 of the License. |
7 |
| -// |
8 |
| -// This program is distributed in the hope that it will be useful, |
9 |
| -// but WITHOUT ANY WARRANTY; without even the implied warranty of |
10 |
| -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
11 |
| -// GNU General Public License for more details. |
12 |
| -
|
13 |
| -bank[libcrtx_max_players] libcrtx_alias_banks; |
14 |
| -string libcrtx_command_list; |
15 |
| -
|
16 |
| -void libcrtx_command_create(string lp_cmd, string lp_func) |
17 |
| -{ |
18 |
| - DataTableSetTrigger( true, "libcrtx_commands_" + lp_cmd, TriggerCreate(lp_func) ); |
19 |
| - libcrtx_command_list = libcrtx_command_list + lp_cmd + ", "; |
20 |
| -} |
21 |
| -
|
22 |
| -bool libcrtx_alias_exists(string aliasName) |
23 |
| -{ |
24 |
| - bank b; |
25 |
| - string s; |
26 |
| - |
27 |
| - if( libcrtx_alias_banks[EventPlayer()] ) { |
28 |
| - s = BankValueGetAsString( libcrtx_alias_banks[EventPlayer()], "aliases", aliasName ); |
29 |
| - if( s == "" ) { |
30 |
| - return false; |
31 |
| - } |
32 |
| - return true; |
33 |
| - } else { |
34 |
| - b = BankLoad( libcrtx_bank_prefix + "aliases", EventPlayer() ); |
35 |
| - libcrtx_alias_banks[EventPlayer()] = b; |
36 |
| - s = BankValueGetAsString( libcrtx_alias_banks[EventPlayer()], "aliases", aliasName ); |
37 |
| - if( s == "" ) { |
38 |
| - return false; |
39 |
| - } |
40 |
| - return true; |
41 |
| - } |
42 |
| -} |
43 |
| -
|
44 |
| -// lists all aliases in comma and space-deliminted format |
45 |
| -string libcrtx_alias_list() |
46 |
| -{ |
47 |
| - int count; |
48 |
| - string current; |
49 |
| - string rvalue; |
50 |
| -
|
51 |
| - count = BankKeyCount( libcrtx_alias_banks[EventPlayer()], "aliases" ); |
52 |
| - if( count == 0 ) { |
53 |
| - return "You have no aliases."; |
54 |
| - } |
55 |
| -
|
56 |
| - while(count > 0) { |
57 |
| - current = BankKeyName( libcrtx_alias_banks[EventPlayer()], "aliases", count-1 ); |
58 |
| - rvalue = rvalue + current; |
59 |
| - |
60 |
| - if( count != 1 ) { // Last one doesn't need a comma |
61 |
| - rvalue = rvalue + ", "; |
62 |
| - } |
63 |
| -
|
64 |
| - count = count - 1; |
65 |
| - } |
66 |
| -
|
67 |
| - return rvalue; |
68 |
| -} |
69 |
| -
|
70 |
| -void libcrtx_alias_destroyall() |
71 |
| -{ |
72 |
| - BankSectionRemove( libcrtx_alias_banks[EventPlayer()], "aliases" ); |
73 |
| - BankSave( libcrtx_alias_banks[EventPlayer()] ); |
74 |
| -} |
75 |
| -
|
76 |
| -void libcrtx_alias_destroy(string aliasName) |
77 |
| -{ |
78 |
| - BankKeyRemove( libcrtx_alias_banks[EventPlayer()], "aliases", aliasName ); |
79 |
| - BankSave( libcrtx_alias_banks[EventPlayer()] ); |
80 |
| -} |
81 |
| -
|
82 |
| -void libcrtx_alias_create(string aliasName, string realName) |
83 |
| -{ |
84 |
| - // bank will be created since alias create is a command that must be checked in advance. |
85 |
| - BankValueSetFromString( libcrtx_alias_banks[EventPlayer()], "aliases", aliasName, realName ); |
86 |
| - BankSave( libcrtx_alias_banks[EventPlayer()] ); |
87 |
| -} |
88 |
| -
|
89 |
| -string libcrtx_alias_getsource(string aliasName) |
90 |
| -{ |
91 |
| - return BankValueGetAsString( libcrtx_alias_banks[EventPlayer()], "aliases", aliasName ); |
92 |
| -} |
| 4 | +// This program is free software; you can redistribute it and/or modify |
| 5 | +// it under the terms of the GNU General Public License as published by |
| 6 | +// the Free Software Foundation; version 2 of the License. |
| 7 | +// |
| 8 | +// This program is distributed in the hope that it will be useful, |
| 9 | +// but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | +// GNU General Public License for more details. |
| 12 | + |
| 13 | +bank[libcrtx_max_players] libcrtx_alias_banks; |
| 14 | +string libcrtx_command_list; |
| 15 | + |
| 16 | +void libcrtx_command_create(string lp_cmd, string lp_func) |
| 17 | +{ |
| 18 | + DataTableSetTrigger( true, "libcrtx_commands_" + lp_cmd, TriggerCreate(lp_func) ); |
| 19 | + libcrtx_command_list = libcrtx_command_list + lp_cmd + ", "; |
| 20 | +} |
| 21 | + |
| 22 | +bool libcrtx_alias_exists(string aliasName) |
| 23 | +{ |
| 24 | + bank b; |
| 25 | + string s; |
| 26 | + |
| 27 | + if( libcrtx_alias_banks[EventPlayer()] ) { |
| 28 | + s = BankValueGetAsString( libcrtx_alias_banks[EventPlayer()], "aliases", aliasName ); |
| 29 | + if( s == "" ) { |
| 30 | + return false; |
| 31 | + } |
| 32 | + return true; |
| 33 | + } else { |
| 34 | + b = BankLoad( libcrtx_bank_prefix + "aliases", EventPlayer() ); |
| 35 | + libcrtx_alias_banks[EventPlayer()] = b; |
| 36 | + s = BankValueGetAsString( libcrtx_alias_banks[EventPlayer()], "aliases", aliasName ); |
| 37 | + if( s == "" ) { |
| 38 | + return false; |
| 39 | + } |
| 40 | + return true; |
| 41 | + } |
| 42 | +} |
| 43 | + |
| 44 | +// lists all aliases in comma and space-deliminted format |
| 45 | +string libcrtx_alias_list() |
| 46 | +{ |
| 47 | + int count; |
| 48 | + string current; |
| 49 | + string rvalue; |
| 50 | + |
| 51 | + count = BankKeyCount( libcrtx_alias_banks[EventPlayer()], "aliases" ); |
| 52 | + if( count == 0 ) { |
| 53 | + return "You have no aliases."; |
| 54 | + } |
| 55 | + |
| 56 | + while(count > 0) { |
| 57 | + current = BankKeyName( libcrtx_alias_banks[EventPlayer()], "aliases", count-1 ); |
| 58 | + rvalue = rvalue + current; |
| 59 | + |
| 60 | + if( count != 1 ) { // Last one doesn't need a comma |
| 61 | + rvalue = rvalue + ", "; |
| 62 | + } |
| 63 | + |
| 64 | + count = count - 1; |
| 65 | + } |
| 66 | + |
| 67 | + return rvalue; |
| 68 | +} |
| 69 | + |
| 70 | +void libcrtx_alias_destroyall() |
| 71 | +{ |
| 72 | + BankSectionRemove( libcrtx_alias_banks[EventPlayer()], "aliases" ); |
| 73 | + BankSave( libcrtx_alias_banks[EventPlayer()] ); |
| 74 | +} |
| 75 | + |
| 76 | +void libcrtx_alias_destroy(string aliasName) |
| 77 | +{ |
| 78 | + BankKeyRemove( libcrtx_alias_banks[EventPlayer()], "aliases", aliasName ); |
| 79 | + BankSave( libcrtx_alias_banks[EventPlayer()] ); |
| 80 | +} |
| 81 | + |
| 82 | +void libcrtx_alias_create(string aliasName, string realName) |
| 83 | +{ |
| 84 | + // bank will be created since alias create is a command that must be checked in advance. |
| 85 | + BankValueSetFromString( libcrtx_alias_banks[EventPlayer()], "aliases", aliasName, realName ); |
| 86 | + BankSave( libcrtx_alias_banks[EventPlayer()] ); |
| 87 | +} |
| 88 | + |
| 89 | +string libcrtx_alias_getsource(string aliasName) |
| 90 | +{ |
| 91 | + return BankValueGetAsString( libcrtx_alias_banks[EventPlayer()], "aliases", aliasName ); |
| 92 | +} |
0 commit comments