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
|
#include "webcit.h"
#include "webserver.h"
/*
* Free a session's march list
*/
void free_march_list(wcsession *wcf)
{
struct march *mptr;
while (wcf->march != NULL) {
mptr = wcf->march->next;
free(wcf->march);
wcf->march = mptr;
}
}
/*
* remove a room from the march list
*/
void remove_march(const StrBuf *aaa)
{
struct march *mptr, *mptr2;
if (WC->march == NULL)
return;
if (!strcasecmp(WC->march->march_name, ChrPtr(aaa))) {
mptr = WC->march->next;
free(WC->march);
WC->march = mptr;
return;
}
mptr2 = WC->march;
for (mptr = WC->march; mptr != NULL; mptr = mptr->next) {
if (!strcasecmp(mptr->march_name, ChrPtr(aaa))) {
mptr2->next = mptr->next;
free(mptr);
mptr = mptr2;
} else {
mptr2 = mptr;
}
}
}
/**
* \brief Locate the room on the march list which we most want to go to.
* Each room
* is measured given a "weight" of preference based on various factors.
* \param desired_floor the room number on the citadel server
* \return the roomname
*/
char *pop_march(int desired_floor)
{
static char TheRoom[128];
int TheWeight = 0;
int weight;
struct march *mptr = NULL;
strcpy(TheRoom, "_BASEROOM_");
if (WC->march == NULL)
return (TheRoom);
for (mptr = WC->march; mptr != NULL; mptr = mptr->next) {
weight = 0;
if ((strcasecmp(mptr->march_name, "_BASEROOM_")))
weight = weight + 10000;
if (mptr->march_floor == desired_floor)
weight = weight + 5000;
weight = weight + ((128 - (mptr->march_floor)) * 128);
weight = weight + (128 - (mptr->march_order));
if (weight > TheWeight) {
TheWeight = weight;
strcpy(TheRoom, mptr->march_name);
/* TODOO: and now????
TheFloor = mptr->march_floor;
TheOrder = mptr->march_order;
*/
}
}
return (TheRoom);
}
/*
* Goto next room having unread messages.
*
* We want to skip over rooms that the user has already been to, and take the
* user back to the lobby when done. The room we end up in is placed in
* newroom - which is set to 0 (the lobby) initially.
* We start the search in the current room rather than the beginning to prevent
* two or more concurrent users from dragging each other back to the same room.
*/
void gotonext(void)
{
char buf[256];
struct march *mptr = NULL;
struct march *mptr2 = NULL;
char room_name[128];
StrBuf *next_room;
int ELoop = 0;
/*
* First check to see if the march-mode list is already allocated.
* If it is, pop the first room off the list and go there.
*/
if (havebstr("startmsg")) {
readloop(readnew, eUseDefault);
return;
}
if (WC->march == NULL) {
serv_puts("LKRN");
serv_getln(buf, sizeof buf);
if (buf[0] == '1')
while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
if (IsEmptyStr(buf)) {
if (ELoop > 10000)
return;
if (ELoop % 100 == 0)
sleeeeeeeeeep(1);
ELoop ++;
continue;
}
extract_token(room_name, buf, 0, '|', sizeof room_name);
if (strcasecmp(room_name, ChrPtr(WC->CurRoom.name))) {
mptr = (struct march *) malloc(sizeof(struct march));
mptr->next = NULL;
safestrncpy(mptr->march_name, room_name, sizeof mptr->march_name);
mptr->march_floor = extract_int(buf, 2);
mptr->march_order = extract_int(buf, 3);
if (WC->march == NULL)
WC->march = mptr;
else
mptr2->next = mptr;
mptr2 = mptr;
}
buf[0] = '\0';
}
/*
* add _BASEROOM_ to the end of the march list, so the user will end up
* in the system base room (usually the Lobby>) at the end of the loop
*/
mptr = (struct march *) malloc(sizeof(struct march));
mptr->next = NULL;
mptr->march_order = 0;
mptr->march_floor = 0;
strcpy(mptr->march_name, "_BASEROOM_");
if (WC->march == NULL) {
WC->march = mptr;
} else {
mptr2 = WC->march;
while (mptr2->next != NULL)
mptr2 = mptr2->next;
mptr2->next = mptr;
}
/*
* ...and remove the room we're currently in, so a <G>oto doesn't make us
* walk around in circles
*/
remove_march(WC->CurRoom.name);
}
if (WC->march != NULL) {
next_room = NewStrBufPlain(pop_march(-1), -1);/*TODO: migrate march to strbuf */
putlbstr("gotonext", 1);
} else {
next_room = NewStrBufPlain(HKEY("_BASEROOM_"));
}
smart_goto(next_room);
FreeStrBuf(&next_room);
}
/*
* un-goto the previous room
*/
void ungoto(void)
{
StrBuf *Buf;
if (havebstr("startmsg")) {
readloop(readnew, eUseDefault);
return;
}
if (!strcmp(WC->ugname, "")) {
smart_goto(WC->CurRoom.name);
return;
}
serv_printf("GOTO %s", WC->ugname);
Buf = NewStrBuf();
StrBuf_ServGetln(Buf);
if (GetServerStatus(Buf, NULL) != 2) {
smart_goto(WC->CurRoom.name);
FreeStrBuf(&Buf);
return;
}
if (WC->uglsn >= 0L) {
serv_printf("SLRP %ld", WC->uglsn);
StrBuf_ServGetln(Buf);
}
FlushStrBuf(Buf);
StrBufAppendBufPlain(Buf, WC->ugname, -1, 0);
strcpy(WC->ugname, "");
smart_goto(Buf);
FreeStrBuf(&Buf);
}
void tmplput_ungoto(StrBuf *Target, WCTemplputParams *TP)
{
wcsession *WCC = WC;
if ((WCC!=NULL) &&
(!IsEmptyStr(WCC->ugname)))
StrBufAppendBufPlain(Target, WCC->ugname, -1, 0);
}
void _gotonext(void) {
slrp_highest();
gotonext();
}
int ConditionalHaveUngoto(StrBuf *Target, WCTemplputParams *TP)
{
wcsession *WCC = WC;
return ((WCC!=NULL) &&
(!IsEmptyStr(WCC->ugname)) &&
(strcasecmp(WCC->ugname, ChrPtr(WCC->CurRoom.name)) == 0));
}
void
InitModule_MARCHLIST
(void)
{
RegisterConditional("COND:UNGOTO", 0, ConditionalHaveUngoto, CTX_NONE);
RegisterNamespace("ROOM:UNGOTO", 0, 0, tmplput_ungoto, NULL, CTX_NONE);
WebcitAddUrlHandler(HKEY("gotonext"), "", 0, _gotonext, NEED_URL);
WebcitAddUrlHandler(HKEY("skip"), "", 0, gotonext, NEED_URL);
WebcitAddUrlHandler(HKEY("ungoto"), "", 0, ungoto, NEED_URL);
}
|