Skip to content

Commit f20523e

Browse files
author
TheBlackMage
committed
- Converted all line endings to LF. Galaxy still requires CRLF in most cases, however.
1 parent e4139e5 commit f20523e

26 files changed

+2931
-2931
lines changed

Chat/Chat.galaxy

+91-91
Original file line numberDiff line numberDiff line change
@@ -1,92 +1,92 @@
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/>
33
//
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+
}

Chat/ChatHandler.galaxy

+77-77
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,51 @@
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/>
33
//
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-
void libcrtx_chat_init()
14-
{
15-
int i = 1;
16-
17-
// Create trigger for player chat messages
18-
trigger t = TriggerCreate("libcrtx_chat_receivedevent");
19-
20-
// Register chat msg events
21-
while( i <= libcrtx_max_players )
22-
{
23-
TriggerAddEventChatMessage(t, i, "", false);
24-
i = i + 1;
25-
}
26-
}
27-
28-
bool libcrtx_chat_parsechat(int lp_player, string lp_message)
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+
void libcrtx_chat_init()
14+
{
15+
int i = 1;
16+
17+
// Create trigger for player chat messages
18+
trigger t = TriggerCreate("libcrtx_chat_receivedevent");
19+
20+
// Register chat msg events
21+
while( i <= libcrtx_max_players )
22+
{
23+
TriggerAddEventChatMessage(t, i, "", false);
24+
i = i + 1;
25+
}
26+
}
27+
28+
bool libcrtx_chat_parsechat(int lp_player, string lp_message)
2929
{
30-
trigger t;
31-
int spaceIndex;
30+
trigger t;
31+
int spaceIndex;
3232
int currentCmd = 0;
33-
string sub = "";
34-
bool commandFound = false;
35-
36-
libcrtx_debug("libcrtx_chat_parsechat()");
37-
38-
// disabled players: all chat is routed to OOC.
39-
if( libcrtx_admin_isplayerdisabled(lp_player) ) {
40-
return false;
41-
}
42-
43-
spaceIndex = StringFind( lp_message, " ", c_stringCase );
44-
if( spaceIndex == 0 ) {
45-
spaceIndex = StringLength( lp_message );
46-
} else {
47-
spaceIndex = spaceIndex - 1;
48-
}
33+
string sub = "";
34+
bool commandFound = false;
35+
36+
libcrtx_debug("libcrtx_chat_parsechat()");
37+
38+
// disabled players: all chat is routed to OOC.
39+
if( libcrtx_admin_isplayerdisabled(lp_player) ) {
40+
return false;
41+
}
42+
43+
spaceIndex = StringFind( lp_message, " ", c_stringCase );
44+
if( spaceIndex == 0 ) {
45+
spaceIndex = StringLength( lp_message );
46+
} else {
47+
spaceIndex = spaceIndex - 1;
48+
}
4949
sub = StringSub(lp_message, 1, spaceIndex);
5050

5151
// alias system, if we're running an alias command, stop, no need to do more.
@@ -61,36 +61,36 @@ bool libcrtx_chat_parsechat(int lp_player, string lp_message)
6161
TriggerExecute(t, false, false);
6262
commandFound = true;
6363
}
64-
65-
return commandFound;
66-
}
67-
68-
bool libcrtx_chat_receivedevent(bool testConds, bool runActions)
69-
{
70-
text t;
71-
string s;
72-
bool isCmd = false;
73-
int triggerPlayer = EventPlayer();
74-
string chatMsg = EventChatMessage(false);
75-
76-
if(!runActions)
77-
{
78-
return true;
79-
}
80-
81-
isCmd = libcrtx_chat_parsechat( triggerPlayer, chatMsg );
82-
83-
// Clear everyone's chat of the filth. FILTH I SAY.
84-
UIClearMessages( PlayerGroupAll(), c_messageAreaChat );
85-
86-
if( !isCmd )
87-
{
88-
t = libcrtx_utility_colortextbyplayer( EventPlayer(), PlayerName( EventPlayer() ) + StringToText(" (OOC)") );
89-
s = ": " + EventChatMessage(false);
90-
t = t + StringToText(s);
91-
// And now we write the pretty OOC chat!
92-
libcrtx_writetext(PlayerGroupAll(), t);
93-
94-
}
95-
return true;
64+
65+
return commandFound;
66+
}
67+
68+
bool libcrtx_chat_receivedevent(bool testConds, bool runActions)
69+
{
70+
text t;
71+
string s;
72+
bool isCmd = false;
73+
int triggerPlayer = EventPlayer();
74+
string chatMsg = EventChatMessage(false);
75+
76+
if(!runActions)
77+
{
78+
return true;
79+
}
80+
81+
isCmd = libcrtx_chat_parsechat( triggerPlayer, chatMsg );
82+
83+
// Clear everyone's chat of the filth. FILTH I SAY.
84+
UIClearMessages( PlayerGroupAll(), c_messageAreaChat );
85+
86+
if( !isCmd )
87+
{
88+
t = libcrtx_utility_colortextbyplayer( EventPlayer(), PlayerName( EventPlayer() ) + StringToText(" (OOC)") );
89+
s = ": " + EventChatMessage(false);
90+
t = t + StringToText(s);
91+
// And now we write the pretty OOC chat!
92+
libcrtx_writetext(PlayerGroupAll(), t);
93+
94+
}
95+
return true;
9696
}

0 commit comments

Comments
 (0)