File: nagware.cpp

package info (click to toggle)
bzflag 2.4.30-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 26,488 kB
  • sloc: cpp: 150,376; ansic: 3,463; sh: 2,535; makefile: 2,194; perl: 486; python: 260; objc: 246; php: 206
file content (651 lines) | stat: -rw-r--r-- 18,306 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
// nagware.cpp : 'Nagware' plugin to encourage player registration
//

#include "bzfsAPI.h"
#include <stdio.h>

#define NAGWAREPLUG_VER "1.00.03"
#define MAX_PLAYERID    255
#define EVENT_FREQUENCY 15      // number of seconds between checks
#define TIME_FACTOR     60      // number of seconds per minute (useful to decrease for testing)


// TODO: check for msgs > 128 chars and warn ( readConfig() )


struct st_MsgEnt
{
    st_MsgEnt(int t, int r, std::string m): time(t), repeat(r), msg(m) {}
    int time;
    int repeat;
    std::string msg;
};
typedef struct st_MsgEnt MsgEnt;


typedef struct
{
    char permName[31];
    bool enableObs;
    bool countObs;
    int  minPlayers;
    MsgEnt *kickMsg;
    std::vector <MsgEnt *> nagMsgs;
    std::string msgSuffix;
} NagConfig;

NagConfig Config;


typedef struct
{
    bool isValid;
    char callsign[22];
    bz_eTeamType team;
    double  joinTime;
    double  nextEventTime;
    MsgEnt *nextEventMsg;
    bool    isVerified;
} NagPlayer;


NagPlayer Players[MAX_PLAYERID+1];
int       NumPlayers=0;
int       NumObservers=0;
int       MaxUsedID=0;
bool      NagEnabled = true;
double    MatchStartTime = 0;
char      ConfigFilename[256] = "";
float     NextEventTime = 0.0f;


class Nagware : public bz_Plugin, public bz_CustomSlashCommandHandler
{
public:
    virtual const char* Name ()
    {
        return "NAGWARE";
    }
    virtual void Init ( const char* config );
    virtual void Cleanup ();

    virtual void Event ( bz_EventData *eventData );
    virtual bool SlashCommand ( int playerID, bz_ApiString, bz_ApiString, bz_APIStringList* );

protected:

private:
};

BZ_PLUGIN(Nagware)

bool readConfig (char *filename, NagConfig *cfg, int playerID);

double nextRepeat (double playerTime, MsgEnt *m)
{
    if (m->repeat == 0)
        return 0;
    int last = (int)((playerTime - m->time) / m->repeat);
    return (m->time + (m->repeat * (last+1)));
}

void updatePlayerNextEvent (int playerID, double now)
{
    unsigned int idx;
    double playerTime =  now - Players[playerID].joinTime;
    double repeat;

    if (!Players[playerID].isValid || Players[playerID].isVerified)
        return;

    Players[playerID].nextEventTime = -1;
    if (Config.nagMsgs.empty())
        return;

    for (idx=0; idx<Config.nagMsgs.size(); idx++)
    {
        if (Config.nagMsgs[idx]->time > playerTime)
        {
            if (idx > 0 && (repeat = nextRepeat (playerTime, Config.nagMsgs[idx-1])) > 0
                    && repeat < Config.nagMsgs[idx]->time)
            {
                Players[playerID].nextEventTime = Players[playerID].joinTime + repeat;
                Players[playerID].nextEventMsg = Config.nagMsgs[idx-1];
            }
            else
            {
                Players[playerID].nextEventTime = Players[playerID].joinTime + Config.nagMsgs[idx]->time;
                Players[playerID].nextEventMsg = Config.nagMsgs[idx];
            }
            break;
        }
    }

    if (Players[playerID].nextEventTime < 0
            &&  (repeat = nextRepeat (playerTime, Config.nagMsgs[Config.nagMsgs.size()-1])) > 0)
    {
        Players[playerID].nextEventTime = Players[playerID].joinTime + repeat;
        Players[playerID].nextEventMsg = Config.nagMsgs[Config.nagMsgs.size()-1];
    }
}


void sendNagMessage (int who, std::string *msg )
{
    std::string fullMsg = *msg + Config.msgSuffix;
    unsigned int idx=0, x;

    while ((x = (unsigned int)fullMsg.find("\\n", idx)) != (unsigned int)std::string::npos)
    {
        bz_sendTextMessage(BZ_SERVER, who, fullMsg.substr(idx, x-idx).c_str());
        idx = x+2;
    }
    bz_sendTextMessage(BZ_SERVER, who, fullMsg.substr(idx).c_str());
}


void tickEvent (float time)
{
    int x;
    if (time < NextEventTime || !NagEnabled || MatchStartTime!=0.0)
        return;
    for (x=0; x<=MaxUsedID; x++)
    {
        if (Players[x].isValid && !Players[x].isVerified && Players[x].nextEventTime>=0 && time>Players[x].nextEventTime)
        {
            sendNagMessage(x, &Players[x].nextEventMsg->msg);
            updatePlayerNextEvent (x, time);
        }
    }
    x = NumPlayers;
    if (Config.countObs)
        x += NumObservers;
    if (Config.kickMsg && Config.kickMsg->time>0  && x>=Config.minPlayers)    // kick someone !
    {
        double kicktime = Config.kickMsg->time;
        for (x=0; x<=MaxUsedID; x++)
            if (Players[x].isValid && !Players[x].isVerified && time>(Players[x].joinTime+kicktime)
                    &&  (Config.enableObs || Players[x].team!=eObservers))
            {
                bz_kickUser (x, Config.kickMsg->msg.c_str(), true);
                break;
            }
    }
    NextEventTime = time + (float)EVENT_FREQUENCY;
}



void dispNagMsg (int who, const char* label, MsgEnt *m)
{
    char msg[140];

    if (m->repeat)
        sprintf (msg, "%s msg: %d (%d): ", label, m->time, m->repeat);
    else
        sprintf (msg, "%s msg: %d: ", label, m->time);
    strncat (msg, m->msg.c_str(), 130);
    if (strlen (msg) > 124)   // max line len is currently 125 (not 128!)
        strcpy (&msg[122], "...");
    bz_sendTextMessage (BZ_SERVER, who, msg);
}



void nagShowConfig (int who)
{
    unsigned int x;

    bz_sendTextMessage(BZ_SERVER, who, "nagware plugin configuration .........");
    bz_sendTextMessagef(BZ_SERVER, who, "perm name: %s", Config.permName);
    bz_sendTextMessagef(BZ_SERVER, who, "min players: %d %s", Config.minPlayers,
                        Config.countObs?"(including observers)":"");

    if (Config.enableObs)
        bz_sendTextMessage(BZ_SERVER, who, "Observer kick is ENABLED");
    else
        bz_sendTextMessage(BZ_SERVER, who, "Observer kick is DISABLED");
    if (Config.msgSuffix.size() > 0 )
        bz_sendTextMessagef(BZ_SERVER, who, "message suffix: %s", Config.msgSuffix.c_str());
    for (x=0; x<Config.nagMsgs.size(); x++)
        dispNagMsg (who, "nag ", Config.nagMsgs[x]);
    if (Config.kickMsg != NULL)
        dispNagMsg (who, "kick", Config.kickMsg);
    if (NagEnabled)
        bz_sendTextMessage(BZ_SERVER, who, "(plugin is currently ENabled)");
    else
        bz_sendTextMessage(BZ_SERVER, who, "(plugin is currently DISabled)");
}


void nagEnable (bool enable, int who)
{
    NagEnabled = enable;
    bz_sendTextMessage(BZ_SERVER, who, "OK.");
}


void nagList (int who)
{
    int numUnverified = 0;
    int x, timeOn;
    double now = bz_getCurrentTime();

    bz_sendTextMessage (BZ_SERVER, who, "Callsign (unverified)    Time ON");
    for (x=0; x<=MaxUsedID; x++)
    {
        if (Players[x].isValid && !Players[x].isVerified)
        {
            timeOn = (int)(now - Players[x].joinTime);
            bz_sendTextMessagef (BZ_SERVER, who, "%-25.25s %3d:%02d", Players[x].callsign, timeOn/60, timeOn%60);
            ++numUnverified;
        }
    }
    if (numUnverified == 0)
        bz_sendTextMessage (BZ_SERVER, who, "  --- NO unverified players ---");
    bz_sendTextMessagef (BZ_SERVER, who, "Players: %d   Observers:%d   TOTAL: %d", NumPlayers, NumObservers,
                         NumPlayers+NumObservers);
}


void nagReload (int who)
{
    if ( readConfig (ConfigFilename, &Config, who) )
    {
        bz_sendTextMessage(BZ_SERVER, who, "nagware config error, plugin disabled.");
        NagEnabled = false;
    }
    else
    {
        bz_sendTextMessage(BZ_SERVER, who, "nagware config reloaded.");
        // RECALC all player nextevents ...
        double now = bz_getCurrentTime();
        int x;
        for (x=0; x<MaxUsedID; x++)
            if (Players[x].isValid && !Players[x].isVerified)
                updatePlayerNextEvent (x, now);
    }
}



bool listAdd (int playerID, const char *callsign, bz_eTeamType team, bool verified, double time)
{
    if (playerID>MAX_PLAYERID || playerID<0)
        return false;
    Players[playerID].isValid = true;
    Players[playerID].team = team;
    Players[playerID].isVerified = verified;
    strncpy (Players[playerID].callsign, callsign, 20);
    Players[playerID].joinTime = time;
    if (Config.nagMsgs.empty())
        Players[playerID].nextEventTime = -1;
    else
    {
        Players[playerID].nextEventTime = time + (Config.nagMsgs[0]->time);
        Players[playerID].nextEventMsg = Config.nagMsgs[0];
    }

    if (team == eObservers)
        ++NumObservers;
    else
        ++NumPlayers;

    if (playerID > MaxUsedID)
        MaxUsedID = playerID;
    return true;
}

bool listDel (int playerID)
{
    if (playerID>MAX_PLAYERID || playerID<0 || !Players[playerID].isValid)
        return false;
    Players[playerID].isValid = false;
    if (Players[playerID].team == eObservers)
        --NumObservers;
    else
        --NumPlayers;
    return true;
}

void sendHelp (int who)
{
    bz_sendTextMessage(BZ_SERVER, who, "NAG commands: off, on, config, reload, list");
}

bool checkPerms (int playerID, const char *nagCmd, const char *permName)
{
    if (permName==NULL || *permName=='\0')
        permName = "NAG";
    if (bz_hasPerm (playerID, permName))
        return true;
    bz_sendTextMessagef (BZ_SERVER, playerID, "You need \"%s\" permission to do /nag %s", permName, nagCmd);
    return false;
}


/*
 *  Event handlers ....
*/

// handle events
void Nagware::Event ( bz_EventData *eventData )
{
    // player JOIN
    if (eventData->eventType == bz_ePlayerJoinEvent)
    {
        bz_PlayerJoinPartEventData_V1 *joinData = (bz_PlayerJoinPartEventData_V1*)eventData;
        bz_debugMessagef(4, "+++ nagware: Player JOINED (ID:%d, TEAM:%d, CALLSIGN:%s)", joinData->playerID,
                         joinData->record->team, joinData->record->callsign.c_str());
        fflush (stdout);
        listAdd (joinData->playerID, joinData->record->callsign.c_str(), joinData->record->team, joinData->record->verified,
                 joinData->eventTime);

        // player PART
    }
    else if (eventData->eventType == bz_ePlayerPartEvent)
    {
        bz_PlayerJoinPartEventData_V1 *joinData = (bz_PlayerJoinPartEventData_V1*)eventData;
        bz_debugMessagef(4, "+++ nagware: Player PARTED (ID:%d, TEAM:%d, CALLSIGN:%s)", joinData->playerID,
                         joinData->record->team, joinData->record->callsign.c_str());
        fflush (stdout);
        listDel (joinData->playerID);

        // game START
    }
    else if (eventData->eventType == bz_eGameStartEvent)
    {
        bz_GameStartEndEventData_V1 *msgData = (bz_GameStartEndEventData_V1*)eventData;
        bz_debugMessagef(4, "+++ nagware: Game START (%f, %f)", msgData->eventTime, msgData->duration);
        fflush (stdout);
        MatchStartTime = msgData->eventTime;

        // game END
    }
    else if (eventData->eventType == bz_eGameEndEvent)
    {
        bz_GameStartEndEventData_V1 *msgData = (bz_GameStartEndEventData_V1*)eventData;
        bz_debugMessagef(4, "+++ nagware: Game END (%f, %f)", msgData->eventTime, msgData->duration);
        fflush (stdout);
        MatchStartTime = 0.0f;
        // can determine length of match, and adjust event times if needed.

        // tick
    }
    else if (eventData->eventType == bz_eTickEvent)
    {
        bz_TickEventData_V1 *msgData = (bz_TickEventData_V1*)eventData;
        tickEvent ((float)msgData->eventTime);

    }
}

// handle /nag command
bool Nagware::SlashCommand ( int playerID, bz_ApiString cmd, bz_ApiString, bz_APIStringList* cmdParams )
{
    char subCmd[6];
    if (strcasecmp (cmd.c_str(), "nag"))   // is it for me ?
        return false;

    if (cmdParams->get(0).c_str()[0] == '\0')
    {
        sendHelp (playerID);
        return true;
    }

    strncpy (subCmd, cmdParams->get(0).c_str(), 5);
    subCmd[4] = '\0';
    if (strcasecmp (subCmd, "conf") == 0)
    {
        if (checkPerms (playerID, "config", Config.permName))
            nagShowConfig (playerID);
    }
    else if (strcasecmp (subCmd, "off") == 0)
    {
        if (checkPerms (playerID, "off", Config.permName))
            nagEnable (false, playerID);
    }
    else if (strcasecmp (subCmd, "on") == 0)
    {
        if (checkPerms (playerID, "on", Config.permName))
            nagEnable (true, playerID);
    }
    else if (strcasecmp (subCmd, "relo") == 0)
    {
        if (checkPerms (playerID, "reload", Config.permName))
            nagReload (playerID);
    }
    else if (strcasecmp (subCmd, "list") == 0)
    {
        if (checkPerms (playerID, "list", Config.permName))
            nagList (playerID);
    }
    else
        sendHelp (playerID);
    return true;
}




/*
 * Plugin load and unload...
*/

bool commandLineHelp (void)
{
    bz_debugMessage(0, "+++ nagware plugin command-line error.");
    bz_debugMessage(0, "Command line args:  PLUGINNAME,configname");
    bz_debugMessage(0, "nagware plugin NOT loaded!");
    return true;
}


bool parseCommandLine (const char *cmdLine)
{
    if (cmdLine==NULL || *cmdLine=='\0')
        return commandLineHelp ();

    strncpy (ConfigFilename, cmdLine, 255);
    if (readConfig(ConfigFilename, &Config, -1))
    {
        bz_debugMessage (0, "+++ nagware plugin config file error, plugin NOT loaded");
        return true;
    }
    return false;
}

void Nagware::Init(const char* cmdLine)
{
    MaxWaitTime = 1.0f;

    double now = bz_getCurrentTime();

    if (parseCommandLine (cmdLine))
        return;

    // get current list of player indices ...
    bz_APIIntList *playerList = bz_newIntList();
    bz_getPlayerIndexList(playerList);
    for (unsigned int i = 0; i < playerList->size(); i++)
    {
        bz_BasePlayerRecord *playerRecord = bz_getPlayerByIndex(playerList->get(i));
        if (playerRecord != NULL)
        {
            listAdd(playerList->get(i), playerRecord->callsign.c_str(), playerRecord->team, playerRecord->verified, now);
            bz_freePlayerRecord(playerRecord);
        }
    }
    bz_deleteIntList (playerList);

    bz_registerCustomSlashCommand ("nag", this);
    Register(bz_ePlayerJoinEvent);
    Register(bz_ePlayerPartEvent);
    Register(bz_eGameStartEvent);
    Register(bz_eGameEndEvent);
    Register(bz_eTickEvent);

    bz_debugMessagef(0, "+++ nagware plugin loaded - v%s", NAGWAREPLUG_VER);
}

void Nagware::Cleanup(void)
{
    bz_removeCustomSlashCommand ("nag");
    Flush();
    bz_debugMessage(0, "+++ nagware plugin unloaded");
}

/*
 * Read Configuration file...
*/

bool configError (const char *msg, int linenum, int playerID, FILE *fp)
{
    char send[256];
    fclose (fp);
    sprintf (send, "+++ nagware config file error (%s) at line #%d", msg, linenum);
    bz_debugMessagef(0, send);
    if (playerID >=0)
        bz_sendTextMessage(BZ_SERVER, playerID, send);
    return true;
}


char *strtrim (char *s)
{
    char c;
    char *p;
    while (*s == ' ')
        ++s;
    p = strlen(s) + s -1;
    while ( ((c=*p)==' ' || c=='\n') && p>s)
        *p--='\0';
    return s;
}

MsgEnt * parseCfgMessage(char *m)
{
    char *p;
    int time, repeat=0;

    if ((p = strchr (m, ' ')) == NULL)
        return NULL;
    *p = '\0';
    if (strchr (m, ',') != NULL)
    {
        if (sscanf (m, "%d,%d", &time, &repeat) != 2)
            return NULL;
    }
    else
    {
        if (sscanf (m, "%d", &time) != 1)
            return NULL;
    }
    if (time<0 || time > 500 || repeat < 0 || repeat > 1000)
        return NULL;

// TODO: check linelen < 128

    return new MsgEnt (time*TIME_FACTOR, repeat*TIME_FACTOR, p+1);
}


int compareMsgEnt (const void *a, const void *b)
{
    return (*(const MsgEnt* const *)a)->time - (*(const MsgEnt* const *)b)->time;
}


bool readConfig (char *filename, NagConfig *cfg, int playerID)
{
    FILE *cfile = fopen (filename, "r");
    MsgEnt *md;
    int lineNum=0;
    char line[1026];
    char *p, *key, *val;

    if (cfile == NULL)
    {
        sprintf (line, "+++ Error opening nagware config file (%s)", filename);
        bz_debugMessagef(0, line);
        if (playerID >=0)
            bz_sendTextMessage(BZ_SERVER, playerID, line);
        return true;
    }

    // install defaults ...
    strcpy (cfg->permName, "NAG");
    cfg->enableObs = false;
    cfg->countObs = true;
    cfg->minPlayers = 0;
    cfg->msgSuffix = "";
    cfg->nagMsgs.clear();

    while ( fgets (line, 1024, cfile) != NULL )
    {
        ++lineNum;
        if (line[0]=='#' || strlen(line)<2)
            continue;

        if ((p = strchr (line, '=')) == NULL)
            return configError ("no '='", lineNum, playerID, cfile);
        *p = '\0';
        key = strtrim (line);
        val = strtrim (++p);

        if (!strcasecmp (key, "permname"))
            strncpy (cfg->permName, val, 30);

        else if (!strcasecmp (key, "kickobs"))
        {
            if ( !strcasecmp(val, "yes") || !strcasecmp(val, "true") )
                cfg->enableObs = true;
            else
                cfg->enableObs = false;
        }
        else if (!strcasecmp (key, "countobs"))
        {
            if ( !strcasecmp(val, "yes") || !strcasecmp(val, "true") )
                cfg->countObs = true;
            else
                cfg->countObs = false;
        }
        else if (!strcasecmp (key, "minplayers"))
        {
            if (sscanf (val, "%d", &cfg->minPlayers)!=1 || cfg->minPlayers<1 || cfg->minPlayers>100)
                return configError ("Invalid minplayers value", lineNum, playerID, cfile);
        }
        else if (!strcasecmp (key, "messagesuffix"))
            cfg->msgSuffix = std::string (val);

        else if (!strcasecmp (key, "message"))
        {
            if ((md = parseCfgMessage (val)) == NULL)
                return configError ("Invalid message format", lineNum, playerID, cfile);
            cfg->nagMsgs.push_back (md);
        }
        else if (!strcasecmp (key, "kickmessage"))
        {
            if ((md = parseCfgMessage (val)) == NULL)
                return configError ("Invalid kick message format", lineNum, playerID, cfile);
            cfg->kickMsg = md;
        }
        else
            return configError ("unknown tag", lineNum, playerID, cfile);
    }

    // sort the nagmsgs vector by time
    qsort (&cfg->nagMsgs[0], cfg->nagMsgs.size(), sizeof(MsgEnt *), compareMsgEnt);

    fclose (cfile);
    return false;
}


// Local Variables: ***
// mode: C++ ***
// tab-width: 4 ***
// c-basic-offset: 4 ***
// indent-tabs-mode: nil ***
// End: ***
// ex: shiftwidth=4 tabstop=4