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
|
/*
* nCP help node
*
* $Id: nCPHelp.c,v 1.7 2004/09/04 07:38:02 jon Exp $
*
* Copyright 1999-2004 Jon Trulson under the ARTISTIC LICENSE. (See LICENSE).
*/
#include "c_defs.h"
#include "context.h"
#include "global.h"
#include "datatypes.h"
#include "color.h"
#include "conf.h"
#include "conqcom.h"
#include "gldisplay.h"
#include "node.h"
#include "client.h"
#include "packet.h"
#include "nCP.h"
#include "nDead.h"
#include "nCPHelp.h"
/* from conquestgl */
extern Unsgn8 clientFlags;
extern int lastServerError;
static int nCPHelpDisplay(dspConfig_t *);
static int nCPHelpIdle(void);
static int nCPHelpInput(int ch);
static scrNode_t nCPHelpNode = {
nCPHelpDisplay, /* display */
nCPHelpIdle, /* idle */
nCPHelpInput, /* input */
NULL
};
scrNode_t *nCPHelpInit(int setnode)
{
if (setnode)
setNode(&nCPHelpNode);
return(&nCPHelpNode);
}
static int nCPHelpDisplay(dspConfig_t *dsp)
{
int lin, col, tlin;
static int FirstTime = TRUE;
static char sfmt[MSGMAXLINE * 2];
if (FirstTime == TRUE)
{
FirstTime = FALSE;
sprintf(sfmt,
"#%d#%%-9s#%d#%%s",
InfoColor,
LabelColor);
}
cprintf(1,0,ALIGN_CENTER, "#%d#%s", LabelColor, "CONQUEST COMMANDS");
lin = 3;
/* Display the left side. */
tlin = lin;
col = 4;
cprintf(tlin,col,ALIGN_NONE,sfmt, "0-9,=", "set warp factor (= is 10)");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "A", "change w/e allocations");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "b", "beam armies");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "B", "bombard a planet");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "C", "cloaking device");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "d,*", "detonate enemy torpedoes");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "D", "detonate your own torpedoes");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "E", "send emergency distress call");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "f", "fire phasers");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "F", "fire phasers, same direction");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "h", "this");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "H", "user history");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "i", "information");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "k", "set course");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "K", "try a coup");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "L", "review old messages");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "m", "send a message");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "M", "short/long range sensor toggle");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "N", "change your name");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "[SPACE]", "toggle map/lrscan");
/* Now do the right side. */
tlin = lin;
col = 44;
cprintf(tlin,col,ALIGN_NONE,sfmt, "O", "options menu");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "o", "come into orbit");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "p", "launch photon torpedoes");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "P", "launch photon torpedo burst");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "Q", "initiate self-destruct");
tlin++;
if (sStat.flags & SPSSTAT_FLAGS_REFIT)
{
cprintf(tlin,col,ALIGN_NONE,sfmt, "r", "refit ship to new type");
tlin++;
}
cprintf(tlin,col,ALIGN_NONE,sfmt, "R", "enter repair mode");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "S", "more user statistics");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "t", "engage tractor beams");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "T", "team list");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "u", "un-engage tractor beams");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "U", "user statistics");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "W", "set war or peace");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "-", "lower shields");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "+", "raise shields");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt,
"/", "player list");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "?", "planet list");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt,
"^L", "refresh the screen");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt,
"[RETURN]", "get last info");
tlin++;
cprintf(tlin,col,ALIGN_NONE,sfmt, "[TAB]", "get next last info");
cprintf(MSG_LIN2, 0, ALIGN_CENTER, MTXT_DONE);
return NODE_OK;
}
static int nCPHelpIdle(void)
{
int pkttype;
Unsgn8 buf[PKT_MAXSIZE];
int sockl[2] = {cInfo.sock, cInfo.usock};
while ((pkttype = waitForPacket(PKT_FROMSERVER, sockl, PKT_ANYPKT,
buf, PKT_MAXSIZE, 0, NULL)) > 0)
processPacket(buf);
if (pkttype < 0) /* some error */
{
clog("nCPHelpIdle: waiForPacket returned %d", pkttype);
Ships[Context.snum].status = SS_OFF;
return NODE_EXIT;
}
if (clientFlags & SPCLNTSTAT_FLAG_KILLED)
{
/* time to die properly. */
setONode(NULL);
nDeadInit();
return NODE_OK;
}
return NODE_OK;
}
static int nCPHelpInput(int ch)
{
/* go back */
setONode(NULL);
nCPInit();
return NODE_OK;
}
|