Coding style, comments, spelling...

This commit is contained in:
Markus Armbruster 2006-05-26 18:46:50 +00:00
parent 109dad1bee
commit f3e85c2f70
9 changed files with 6 additions and 20 deletions

View file

@ -4,7 +4,7 @@ Why backups
Running a game without regular backups is irresponsible. A bug, a Running a game without regular backups is irresponsible. A bug, a
system crash or a deity error can destroy the game, leaving you no way system crash or a deity error can destroy the game, leaving you no way
to recover except restoring from backup. If you foolishly neglected to recover except restoring from backup. If you foolishly neglected
to make regular, working backups, players, who likely invested to make regular, working backups, then players, who likely invested
substantial time in your game, will have every reason to be very angry substantial time in your game, will have every reason to be very angry
with you. with you.
@ -28,7 +28,7 @@ Automatic backups
----------------- -----------------
The server lets you run an arbitrary command right before the update, The server lets you run an arbitrary command right before the update,
with players locked out. You can use this feature to make a back up with players locked out. You can use this feature to make a backup
on each update automatically. on each update automatically.
The command runs in the data directory. stdin, stdout, stderr are The command runs in the data directory. stdin, stdout, stderr are

View file

@ -39,8 +39,6 @@
#include "item.h" #include "item.h"
/* The order of the following elements is there to match up with genitem */
struct sctstr { struct sctstr {
/* initial part must match struct genitem */ /* initial part must match struct genitem */
short ef_type; short ef_type;

View file

@ -289,7 +289,6 @@ pdump(void)
} else } else
pr(" N/A"); pr(" N/A");
break; break;
case 21: case 21:
pr(" %c", plane.pln_flags & PLN_AIRBURST ? 'A' : 'G'); pr(" %c", plane.pln_flags & PLN_AIRBURST ? 'A' : 'G');
break; break;

View file

@ -154,13 +154,6 @@ trad(void)
} }
switch (trade.trd_type) { switch (trade.trd_type) {
case EF_NUKE: case EF_NUKE:
/*
if (!getsect(tg.gen.trg_x, tg.gen.trg_y, &sect)) {
return RET_FAIL;
}
trade.trd_owner = sect.sct_own;
break;
*/
case EF_PLANE: case EF_PLANE:
case EF_SHIP: case EF_SHIP:
case EF_LAND: case EF_LAND:

View file

@ -265,8 +265,7 @@ loc_BlockThisThread(void)
static BOOL static BOOL
loc_Exit_Handler(DWORD fdwCtrlType) loc_Exit_Handler(DWORD fdwCtrlType)
{ {
switch (fdwCtrlType) switch (fdwCtrlType) {
{
case CTRL_C_EVENT: case CTRL_C_EVENT:
case CTRL_CLOSE_EVENT: case CTRL_CLOSE_EVENT:
case CTRL_BREAK_EVENT: case CTRL_BREAK_EVENT:

View file

@ -67,7 +67,7 @@ plurize(char *buf, int size, int n)
if (!len || n <= 1) if (!len || n <= 1)
return buf; return buf;
switch(buf[len - 1]) { switch (buf[len - 1]) {
case 'y': case 'y':
buf[len - 1] = '\0'; buf[len - 1] = '\0';
strncat(buf, "ies", size - len); strncat(buf, "ies", size - len);

View file

@ -139,8 +139,7 @@ static SERVICE_STATUS_HANDLE service_status_handle;
static void WINAPI static void WINAPI
service_ctrl_handler(DWORD Opcode) service_ctrl_handler(DWORD Opcode)
{ {
switch(Opcode) switch(Opcode) {
{
case SERVICE_CONTROL_PAUSE: case SERVICE_CONTROL_PAUSE:
service_status.dwCurrentState = SERVICE_PAUSED; service_status.dwCurrentState = SERVICE_PAUSED;
logerror("Pausing the service not supported"); logerror("Pausing the service not supported");

View file

@ -112,9 +112,7 @@ float plane_grow_scale = 2.0; /* how fast eff grows for planes (xETUS) */
double fgrate = 0.0012; /* food growth rate (dt * fert) */ double fgrate = 0.0012; /* food growth rate (dt * fert) */
double fcrate = 0.0013; /* food cultivate rate (dt * workforce) */ double fcrate = 0.0013; /* food cultivate rate (dt * workforce) */
double eatrate = 0.0005; /* food eating rate (dt * people) */ double eatrate = 0.0005; /* food eating rate (dt * people) */
/*double eatrate = 0.0001;*//* food eating rate (dt * people) */
double babyeat = 0.0060; /* food to mature 1 baby into a civilian */ double babyeat = 0.0060; /* food to mature 1 baby into a civilian */
/*double babyeat = 0.0000;*//* food to mature 1 baby into a civilian */
double obrate = 0.005; /* other sectors birth rate */ double obrate = 0.005; /* other sectors birth rate */
double uwbrate = 0.0025; /* uncompensated worker birth rate */ double uwbrate = 0.0025; /* uncompensated worker birth rate */

View file

@ -62,7 +62,7 @@ getele(char *recipient, char *buf)
sprintf(left, "%4d left: ", (int)(buf + MAXTELSIZE - bp)); sprintf(left, "%4d left: ", (int)(buf + MAXTELSIZE - bp));
if (uprmptrd(left, buffer, sizeof(buffer) - 2) <= 0) if (uprmptrd(left, buffer, sizeof(buffer) - 2) <= 0)
return -1; return -1;
switch(tilde_escape(buffer)) { switch (tilde_escape(buffer)) {
case 'q': case 'q':
return -1; return -1;
case 'u': case 'u':