]> jfr.im git - irc/gameservirc.git/blame - gameserv/aClient.cpp
added items to the tavern.dat, added the filename option to the config file
[irc/gameservirc.git] / gameserv / aClient.cpp
CommitLineData
85ce9d3e 1#include "aClient.h"
9f8c2acc 2#include "options.h"
3#include "extern.h"
85ce9d3e 4#include <stdlib.h>
5#include <stdio.h>
6
7aClient::aClient(char *n)
8{
9f8c2acc 9 #ifdef DEBUGMODE
10 log("aClient created: %s", (n[0] == '\0' ? "NULL" : n));
11 #endif
85ce9d3e 12 strcpy(nick, n);
ce61cdfa 13
14 #ifdef P10
15 strcpy(realnick, n);
16 #endif
17
85ce9d3e 18 stats = NULL;
96f71fee 19 flags = 0;
85ce9d3e 20}
ce61cdfa 21#ifdef P10
22aClient::aClient(char *n, char *rn)
23{
24 #ifdef DEBUGMODE
25 log("aClient created: %s", (n[0] == '\0' ? "NULL" : n));
26 #endif
27 strcpy(nick, n);
28 strcpy(realnick, rn);
29 stats = NULL;
30 flags = 0;
31}
32#endif
85ce9d3e 33
34aClient::aClient(const aClient &right)
35{
9f8c2acc 36 #ifdef DEBUGMODE
37 log("aClient created from another aClient: %s\n", right.nick);
38 #endif
39
85ce9d3e 40 stats = NULL;
96f71fee 41 flags = 0;
85ce9d3e 42 setData(&right);
43}
44
45aClient::aClient()
46{
47 aClient("");
48}
49
50aClient::~aClient()
51{
85ce9d3e 52 if (stats)
53 {
9f8c2acc 54 #ifdef DEBUGMODE
5c449fde 55 log("aClient deleted: %s %s %s", nick, stats->name.c_str(), stats->password.c_str());
9f8c2acc 56 #endif
57
85ce9d3e 58 delete stats;
59 }
9f8c2acc 60 #ifdef DEBUGMODE
61 else
62 {
63 log("aClient deleted: %s", nick);
64 }
65 #endif
66
96f71fee 67 flags = 0;
85ce9d3e 68}
69
70ostream &operator<<( ostream &out, const aClient &c )
71{
72 out << (c.nick[0] == '\0' ? "NULL" : c.nick);
73 return out;
74}
75
76void aClient::setData(const aClient *right)
77{
78 if (right != this)
79 {
80 strcpy(nick, right->nick);
ce61cdfa 81 #ifdef P10
82 strcpy(realnick, right->realnick);
83 #endif
85ce9d3e 84 if (right->stats)
85 {
86 if (!stats)
87 stats = new Player;
9f8c2acc 88 #ifdef DEBUGMODE
5c449fde 89 log("Should be setting data for %s", right->stats->name.c_str());
9f8c2acc 90 #endif
85ce9d3e 91
85ce9d3e 92 stats->setData(right->stats);
93 }
94 }
95}
96f71fee 96
97long int aClient::setFlags(long int newflags)
98{
99 flags = newflags;
100 return getFlags();
101}
102
103long int aClient::addFlag(long int flag)
104{
105 flags |= flag;
106 return getFlags();
107}
108
109long int aClient::remFlag(long int flag)
110{
111 flags &= ~flag;
112 return getFlags();
113}