main.cpp 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764
  1. /*
  2. Space Construct v0.6-dev
  3. Beanzilla@21:4/110 on FsxNet
  4. Beanzilla@637:1/110 on HappyNet
  5. */
  6. #define VERSION_MAJOR 0
  7. #define VERSION_MINOR 6
  8. #ifndef VERSION_TYPE
  9. #define VERSION_TYPE "dev"
  10. #endif
  11. #define PATH_MAX 256
  12. #define PATH_SEP "/"
  13. //#include <MagiDoor.h> // Sorry Apam... as much as I would like to keep using your stuff it's just not fully functional
  14. #include <OpenDoor.h> // Now using odoors for c++
  15. #include <sqlite3.h>
  16. #if defined(_MSC_VER) || defined(WIN32)
  17. #define snprintf _snprintf
  18. #define strcasecmp _stricmp
  19. #include <winsock2.h>
  20. #ifndef _MSC_VER
  21. #define _MSC_VER 1
  22. #endif
  23. #else
  24. #include <arpa/inet.h>
  25. #endif
  26. // Standard C
  27. #include <time.h>
  28. #include <stdio.h>
  29. #include <string.h>
  30. #include <stdlib.h>
  31. #include <stdarg.h>
  32. #include <ctype.h>
  33. #include <sys/types.h>
  34. #include <sys/stat.h>
  35. #include <unistd.h> // stat
  36. #include <string>
  37. std::string log_path = "logs";
  38. int inuse = 0; // Are any other copies of us running? (We are a single user door!)
  39. int debug = 0; // Are we in debug mode?
  40. // Please change it for your system!
  41. int allowDev = 1; // Allow "Beanzilla" to not need the password.
  42. std::string sysop_pass = "spaceISbig"; // Case sensitive!
  43. // Randrange
  44. int randrange(int min, int max){
  45. return min + rand() / (RAND_MAX / (max - min + 1) + 1);
  46. }
  47. class user_info {
  48. // Privates... but why do we allow "friends" to access them too?
  49. int uid, experience, gun, fuel, metal, armor, shield, hitpoints, armorpoints, shieldpoints, shieldsup, laston;
  50. bool dirt;
  51. std::string nick;
  52. std::string real;
  53. public:
  54. void set_up(int uuid, std::string name, std::string realname, int exp, int lo, int a, int ap, int s, int sp, int su, int hp, int g, int m, int f) {
  55. // Setup values
  56. uid = uuid;
  57. nick = name;
  58. real = realname;
  59. experience = exp;
  60. laston = lo;
  61. armor = a;
  62. armorpoints = ap;
  63. shield = s;
  64. shieldpoints = sp;
  65. shieldsup = su;
  66. hitpoints = hp;
  67. gun = g;
  68. metal = m;
  69. fuel = f;
  70. dirt = false;
  71. }
  72. void set_new(std::string name, std::string realname) {
  73. // New User
  74. nick = name;
  75. real = realname;
  76. experience = 0;
  77. laston = 0;
  78. armor = 1;
  79. armorpoints = 8;
  80. shield = 0;
  81. shieldpoints = 0;
  82. shieldsup = 0;
  83. hitpoints = 4;
  84. gun = 1;
  85. metal = 0;
  86. fuel = 10;
  87. dirt = true;
  88. }
  89. bool dirty() {
  90. // Need to save?
  91. return dirt;
  92. }
  93. int calcArmor() {
  94. // How much metal to add one to armor
  95. return (3 * (armor + 1));
  96. }
  97. int calcShield() {
  98. // How much metal to add one to shield
  99. return (6 * (shield + 1));
  100. }
  101. int calcGun() {
  102. // How much metal to add one to gun
  103. return (4 * (gun + 1));
  104. }
  105. int calcHP() {
  106. // our total hitpoints
  107. return (gun + armor + shield + 2);
  108. }
  109. int calcSP() {
  110. // our total shieldpoints
  111. return (shield * 3);
  112. }
  113. int calcAP() {
  114. // our total armorpoints
  115. return (armor * 8);
  116. }
  117. void regen() {
  118. // Process Shields rebooting back online
  119. if(shieldsup != 0) {
  120. dirt = true;
  121. shieldsup -= 1;
  122. } // Process shieldpoints restoring
  123. if(shieldsup != 0) {
  124. dirt = true;
  125. shieldpoints += shield;
  126. } else {
  127. dirt = true;
  128. shieldpoints += 1;
  129. } // Establish limit
  130. if(shieldpoints > calcSP()) {
  131. dirt = true;
  132. shieldpoints = calcSP();
  133. }
  134. }
  135. void repair(bool docked) {
  136. // If we are not docked we are in combat so only repair 2 instead of 4
  137. int amount;
  138. if(docked) {
  139. amount = 4;
  140. } else {
  141. amount = 2;
  142. }
  143. if(armorpoints < calcAP()) {
  144. if(metal != 0) {
  145. dirt = true;
  146. metal -= 1;
  147. armorpoints += amount;
  148. if(armorpoints > calcAP()) {
  149. armorpoints = calcAP();
  150. }
  151. }
  152. }
  153. }
  154. void set_dirty(bool state) {
  155. // To manually change dirty state
  156. dirt = state;
  157. }
  158. int takeDamage(int dmg) {
  159. // Damage System,
  160. // First Shields, Then Armor, Finally Hull.
  161. // Returns any damage left over from target... target died and this is the left over damage
  162. if(shieldsup == 0) {
  163. if(shieldpoints >= dmg) {
  164. // Shields Absorbed all damage
  165. dirt = true;
  166. shieldpoints -= dmg;
  167. return 0;
  168. } else {
  169. // Shields took some damage but more damage to take
  170. dirt = true;
  171. dmg -= shieldpoints;
  172. shieldpoints = 0;
  173. }
  174. }
  175. if(dmg > 0) {
  176. if(armorpoints >= dmg) {
  177. // Armor took all remaining damage
  178. dirt = true;
  179. armorpoints -= dmg;
  180. return 0;
  181. } else {
  182. // Armor took some damage but more damage to take
  183. dirt = true;
  184. dmg -= armorpoints;
  185. armorpoints = 0;
  186. }
  187. }
  188. if(dmg > 0) {
  189. if(hitpoints > dmg) {
  190. // Hull took all remaining damage
  191. dirt = true;
  192. hitpoints -= dmg;
  193. return 0;
  194. } else {
  195. // Hull took some damage but more needed to be taken
  196. // Our ship is :boom: space debris.
  197. dirt = true;
  198. int temp = dmg;
  199. dmg -= hitpoints;
  200. hitpoints -= temp;
  201. temp = 0;
  202. return dmg;
  203. }
  204. }
  205. }
  206. // Exchange Systems
  207. void addEXP(int amount) {
  208. dirt = true;
  209. experience += amount;
  210. }
  211. void rmEXP(int amount) {
  212. dirt = true;
  213. experience -= amount;
  214. }
  215. void addMetal(int amount) {
  216. dirt = true;
  217. metal += amount;
  218. }
  219. void rmMetal(int amount) {
  220. dirt = true;
  221. metal -= amount;
  222. }
  223. void addFuel(int amount) {
  224. dirt = true;
  225. fuel += amount;
  226. }
  227. void rmFuel(int amount) {
  228. dirt = true;
  229. fuel -= amount;
  230. }
  231. void rmLaston(int amount) {
  232. dirt = true;
  233. laston -= amount;
  234. if(laston < 0) {
  235. laston = 0;
  236. }
  237. }
  238. // Another Combat() helper
  239. void addHP(int amount) {
  240. dirt = true;
  241. hitpoints += amount;
  242. if(hitpoints > calcHP()) {
  243. hitpoints = calcHP();
  244. }
  245. }
  246. void addGun(int amount) {
  247. dirt = true;
  248. gun += amount;
  249. addHP(1);
  250. }
  251. void addArmor(int amount) {
  252. dirt = true;
  253. armor += amount;
  254. armorpoints += (amount * calcAP());
  255. addHP(1);
  256. }
  257. void addShield(int amount) {
  258. dirt = true;
  259. shield += amount;
  260. if(shieldsup == 0) {
  261. shieldpoints += (amount * calcSP());
  262. } else {
  263. shieldpoints += amount;
  264. }
  265. addHP(1);
  266. }
  267. void rmSU(int amount) {
  268. dirt = true;
  269. shieldsup -= amount;
  270. if(shieldsup > 0) {
  271. shieldsup = 0;
  272. }
  273. }
  274. // Sets
  275. void set_laston(int lo) {laston = lo;}
  276. void set_uid(int uuid) {uid = uuid;}
  277. void set_nick(std::string name) {nick = name;}
  278. void set_real(std::string name) {real = name;}
  279. void set_experience(int exp) {experience = exp;}
  280. void set_metal(int m) {metal = m;}
  281. void set_fuel(int f) {fuel = f;}
  282. void set_gun(int g) {gun = g;}
  283. void set_armor(int a) {armor = a;}
  284. void set_shield(int s) {shield = s;}
  285. void set_shieldsup(int su) {shieldsup = su;}
  286. void set_armorpoints(int ap) {armorpoints = ap;}
  287. void set_shieldpoints(int sp) {shieldpoints = sp;}
  288. void set_hitpoints(int hp) {hitpoints = hp;}
  289. // Gets
  290. int get_laston() {return laston;}
  291. int get_uid() {return uid;}
  292. std::string get_nick() {return nick;}
  293. std::string get_real() {return real;}
  294. int get_experience() {return experience;}
  295. int get_metal() {return metal;}
  296. int get_fuel() {return fuel;}
  297. int get_gun() {return gun;}
  298. int get_armor() {return armor;}
  299. int get_shield() {return shield;}
  300. int get_armorpoints() {return armorpoints;}
  301. int get_shieldpoints() {return shieldpoints;}
  302. int get_shieldsup() {return shieldsup;}
  303. int get_hitpoints() {return hitpoints;}
  304. };
  305. // DateStamp Structure to provide date difference
  306. typedef struct dateTamp {
  307. int year; // YYYY, or number of years difference
  308. int month; // MM, or number of months difference
  309. int day; // DD, or number of days difference.
  310. int age; // Taking down to aproximate day count.
  311. } dT; // YYYYMMDD it in int form
  312. void dolog(char *fmt, ...) {
  313. // Low end Logging
  314. char buffer[PATH_MAX];
  315. struct tm *time_now;
  316. time_t timen;
  317. FILE *logfptr;
  318. timen = time(NULL);
  319. time_now = localtime(&timen);
  320. if (log_path != "") {
  321. snprintf(buffer, PATH_MAX, "%s%s%04d%02d%02d.log", log_path, PATH_SEP,
  322. time_now->tm_year + 1900, time_now->tm_mon + 1, time_now->tm_mday);
  323. } else {
  324. snprintf(buffer, PATH_MAX, "%04d%02d%02d.log", time_now->tm_year + 1900,
  325. time_now->tm_mon + 1, time_now->tm_mday);
  326. }
  327. logfptr = fopen(buffer, "a");
  328. if (!logfptr) {
  329. return;
  330. }
  331. va_list ap;
  332. va_start(ap, fmt);
  333. vsnprintf(buffer, 512, fmt, ap);
  334. va_end(ap);
  335. fprintf(logfptr, "%02d:%02d:%02d %s\n", time_now->tm_hour, time_now->tm_min,
  336. time_now->tm_sec, buffer);
  337. fclose(logfptr);
  338. }
  339. int dateStamp() {
  340. // YYYYMMDD \o/ In a INT so we can store it and compare against it!
  341. struct tm *time_now;
  342. time_t timen;
  343. int result = 0;
  344. timen = time(NULL);
  345. time_now = localtime(&timen);
  346. result += ((time_now->tm_year + 1900) * 10000);
  347. result += (time_now->tm_mon * 100) + 100;
  348. result += time_now->tm_mday;
  349. return result;
  350. }
  351. int compareDate(int dt) {
  352. // Returns integer of difference, from now.
  353. struct tm *time_now;
  354. time_t timen;
  355. int now = 0;
  356. timen = time(NULL);
  357. time_now = localtime(&timen);
  358. now += ((time_now->tm_year + 1900) * 10000);
  359. now += (time_now->tm_mon * 100) + 100;
  360. now += time_now->tm_mday;
  361. return (now - dt); // 10000 = 1 Year, 100 = 1 Month, 1 = 1 Day
  362. }
  363. dT fromDate(int diff) {
  364. // Reverse process so we can compare exact days or get the structure back out too.
  365. dT result;
  366. result.year = diff / 10000;
  367. result.month = (diff / 100) % 100;
  368. result.day = diff % 100;
  369. result.age = 0;
  370. // Process Aprox day count
  371. result.age += (365 * result.year);
  372. result.age += (30 * result.month);
  373. result.age += result.day;
  374. return result;
  375. }
  376. int db_test() {
  377. // Displays all users in the database
  378. sqlite3 *db;
  379. sqlite3_stmt *stmt;
  380. char sqlbuffer[256];
  381. char strbuffer[256];
  382. int sizeofdb = 0;
  383. int rc = sqlite3_open("spaceconstruct.db3", &db);
  384. if(rc) { // Did we do a successful open?
  385. dolog("E: failed opening database %s", sqlite3_errmsg(db));
  386. sqlite3_close(db);
  387. od_exit(-1, FALSE);
  388. }
  389. sqlite3_busy_timeout(db, 5000);
  390. // DB open
  391. strcpy(sqlbuffer, "SELECT * FROM user;");
  392. sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer), &stmt, NULL);
  393. while(sqlite3_step(stmt) == SQLITE_ROW) {
  394. od_printf("`white`%s=%d %s=%s %s=%s %s=%d %s=%d %s=%d %s=%d %s=%d %s=%d %s=%d %s=%d %s=%d %s=%d %s=%d\r\n",
  395. sqlite3_column_name(stmt, 0), // int, uid
  396. sqlite3_column_int(stmt, 0),
  397. sqlite3_column_name(stmt, 1), // text, nick
  398. sqlite3_column_text(stmt, 1),
  399. sqlite3_column_name(stmt, 2), // text, real
  400. sqlite3_column_text(stmt, 2),
  401. sqlite3_column_name(stmt, 3), // int, experiece
  402. sqlite3_column_int(stmt, 3),
  403. sqlite3_column_name(stmt, 4), // int, metal
  404. sqlite3_column_int(stmt, 4),
  405. sqlite3_column_name(stmt, 5), // int, fuel
  406. sqlite3_column_int(stmt, 5),
  407. sqlite3_column_name(stmt, 6), // int, gun
  408. sqlite3_column_int(stmt, 6),
  409. sqlite3_column_name(stmt, 7), // int, armor
  410. sqlite3_column_int(stmt, 7),
  411. sqlite3_column_name(stmt, 8), // int, shield
  412. sqlite3_column_int(stmt, 8),
  413. sqlite3_column_name(stmt, 9), // int, armorpoints
  414. sqlite3_column_int(stmt, 9),
  415. sqlite3_column_name(stmt, 10), // int, shieldpoints
  416. sqlite3_column_int(stmt, 10),
  417. sqlite3_column_name(stmt, 11), // int, hitpoints
  418. sqlite3_column_int(stmt, 11),
  419. sqlite3_column_name(stmt, 12), // int, shieldsup
  420. sqlite3_column_int(stmt, 12),
  421. sqlite3_column_name(stmt, 13), // int, laston
  422. sqlite3_column_int(stmt, 13)
  423. );
  424. sizeofdb += 1;
  425. } // Clean up database
  426. sqlite3_finalize(stmt);
  427. sqlite3_close(db);
  428. return sizeofdb;
  429. }
  430. int check_lock() {
  431. // Checks stats of lock, (1 = Lock is in effect, 0 = No Lock established)
  432. struct stat s;
  433. if (stat("lock.flg", &s) == 0) {
  434. return 1;
  435. } else {
  436. return 0;
  437. }
  438. }
  439. int grab_lock() {
  440. // Attempt to grab lock, (0 = Already gotten, 1 = Success, -1 = Error)
  441. int valid = check_lock();
  442. FILE *fhandle;
  443. if (valid == 0) {
  444. fhandle = fopen("lock.flg", "w");
  445. if(!fhandle) {
  446. dolog("E: Unable to make lock.flg!");
  447. dolog("E: Something went wrong perhaps we don't have permissions?");
  448. return -1;
  449. }
  450. fprintf(fhandle, "I am in use already!\n");
  451. fclose(fhandle);
  452. return 1;
  453. } else {
  454. dolog("W: Lock already established!");
  455. return 0;
  456. }
  457. }
  458. void rel_lock() {
  459. // Attempt to release lock
  460. int valid = check_lock();
  461. if (valid == 1) {
  462. if (unlink("lock.flg") != 0) {
  463. dolog("C: Unable to release lock.flg!");
  464. dolog("C: Something went wrong! Players might not be able to play now!");
  465. }
  466. } else {
  467. dolog("W: Lock already released!");
  468. }
  469. }
  470. void log_drop() {
  471. // Spits out info from Drop File:
  472. od_printf("`white`Name=%s Alias=%s TimeLeft=%d SecLevel=%d Location=%s Node=%d Sysop=%s\r\n",
  473. od_control.user_name,
  474. od_control.user_handle,
  475. od_control.user_timelimit,
  476. od_control.user_security,
  477. od_control.user_location,
  478. od_control.od_node,
  479. od_control.sysop_name
  480. );
  481. }
  482. void paws() {
  483. // Aaah, DRY
  484. od_printf("`white`Press any key to continue...");
  485. od_get_key(TRUE);
  486. od_printf("\r\n");
  487. }
  488. int yesNo() {
  489. char ch;
  490. int done = 0;
  491. od_printf("`bright black`(`bright white`Y`bright black`)`white`es `bright black`(`bright red`N`bright black`)`red`o`white`");
  492. ch = od_get_answer("YyNn\r");
  493. od_printf("\r\n");
  494. switch(tolower(ch)) {
  495. case 'y':
  496. done = 1;
  497. break;
  498. case '\r':
  499. case 'n':
  500. break;
  501. }
  502. return done;
  503. }
  504. int locate_player(char name[]) {
  505. // returns user id for given real name and 0 for no record found
  506. sqlite3 *db;
  507. sqlite3_stmt *stmt;
  508. char sqlbuffer[256];
  509. int result = 0;
  510. int rc = sqlite3_open("spaceconstruct.db3", &db);
  511. if(rc) { // Did we do a successful open?
  512. dolog("E: failed opening database %s", sqlite3_errmsg(db));
  513. sqlite3_close(db);
  514. od_exit(-1, FALSE);
  515. }
  516. sqlite3_busy_timeout(db, 5000);
  517. //od_printf("realname = '%s'\r\n", name);
  518. // Locating user with given name
  519. strcpy(sqlbuffer, "SELECT * from user where real=? COLLATE NOCASE;");
  520. sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer) + 1, &stmt, NULL);
  521. sqlite3_bind_text(stmt, 1, name, strlen(name), SQLITE_STATIC);
  522. rc = sqlite3_step(stmt);
  523. if (rc == SQLITE_ROW) {
  524. // Return user id
  525. result = sqlite3_column_int(stmt, 0);
  526. } else {
  527. // User not found
  528. dolog("W: Unable to locate user=%s", name);
  529. result = 0;
  530. } // Clean Up, return results
  531. sqlite3_finalize(stmt);
  532. sqlite3_close(db);
  533. return result;
  534. }
  535. void check_database() {
  536. // If the table users does not exist make it.
  537. sqlite3 *db;
  538. sqlite3_stmt *stmt;
  539. char sqlbuffer[256];
  540. int rc = sqlite3_open("spaceconstruct.db3", &db);
  541. if(rc) {
  542. dolog("C: Failed opening database %s (%d)", sqlite3_errmsg(db), rc);
  543. sqlite3_close(db);
  544. od_exit(-1, FALSE);
  545. }
  546. sqlite3_busy_timeout(db, 5000);
  547. strcpy(sqlbuffer, "SELCECT COUNT(*) FROM user;");
  548. sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer) + 1, &stmt, NULL);
  549. rc = sqlite3_step(stmt);
  550. if(rc == SQLITE_ROW) {
  551. // Good
  552. } else {
  553. // Bad, Create table
  554. char *errmsg;
  555. rc = sqlite3_exec(db, "CREATE TABLE IF NOT EXISTS \"user\" (`uid` INTEGER PRIMARY KEY AUTOINCREMENT,`nick` TEXT,`real` TEXT,`experience` INTEGER,`metal` INTEGER,`fuel` INTEGER,`gun` INTEGER,`armor` INTEGER,`shield` INTEGER,`armorpoints` INTEGER,`shieldpoints` INTEGER,`hitpoints` INTEGER,`shieldsup` INTEGER,`laston` INTEGER);", NULL, NULL, &errmsg);
  556. dolog("W: Users table did not exist created with %d", rc);
  557. }
  558. sqlite3_finalize(stmt);
  559. sqlite3_close(db);
  560. }
  561. user_info* load_player(int uuid) {
  562. // Returns a player Structure from database
  563. sqlite3 *db;
  564. sqlite3_stmt *stmt;
  565. char sqlbuffer[256];
  566. user_info *result;
  567. int rc = sqlite3_open("spaceconstruct.db3", &db);
  568. if(rc) { // Did we do a successful open?
  569. dolog("E: failed opening database %s", sqlite3_errmsg(db));
  570. sqlite3_close(db);
  571. od_exit(-1, FALSE);
  572. }
  573. sqlite3_busy_timeout(db, 5000);
  574. strcpy(sqlbuffer, "SELECT * FROM user WHERE uid=?;");
  575. sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer) + 1, &stmt, NULL);
  576. sqlite3_bind_int(stmt, 1, uuid);
  577. rc = sqlite3_step(stmt);
  578. if (rc == SQLITE_ROW) {
  579. /*
  580. result.uid = sqlite3_column_int(stmt, 0);
  581. strcpy(result.nick, sqlite3_column_text(stmt, 1));
  582. strcpy(result.real, sqlite3_column_text(stmt, 2));
  583. result.experience = sqlite3_column_int(stmt, 3);
  584. result.metal = sqlite3_column_int(stmt, 4);
  585. result.fuel = sqlite3_column_int(stmt, 5);
  586. result.gun = sqlite3_column_int(stmt, 6);
  587. result.armor = sqlite3_column_int(stmt, 7);
  588. result.shield = sqlite3_column_int(stmt, 8);
  589. result.armorpoints = sqlite3_column_int(stmt, 9);
  590. result.shieldpoints = sqlite3_column_int(stmt, 10);
  591. result.hitpoints = sqlite3_column_int(stmt, 11);
  592. result.shieldsup = sqlite3_column_int(stmt, 12);
  593. result.laston = sqlite3_column_int(stmt, 13); */
  594. result->set_up(sqlite3_column_int(stmt, 0), sqlite3_column_text(stmt, 1), sqlite3_column_text(stmt, 2), sqlite3_column_int(stmt, 3), sqlite3_column_int(stmt, 13), sqlite3_column_int(stmt, 7), sqlite3_column_int(stmt, 9), sqlite3_column_int(stmt, 8), sqlite3_column_int(stmt, 10), sqlite3_column_int(stmt, 12), sqlite3_column_int(stmt, 11), sqlite3_column_int(stmt, 6), sqlite3_column_int(stmt, 4), sqlite3_column_int(stmt, 5));
  595. } else {
  596. //dolog("E: Unable to locate user with id=%d got %s (%d)", uuid, sqlite3_errmsg(db), rc);
  597. sqlite3_finalize(stmt);
  598. sqlite3_close(db);
  599. result->set_uid(0);
  600. return result;
  601. }
  602. sqlite3_finalize(stmt);
  603. sqlite3_close(db);
  604. return result;
  605. }
  606. user_info* highest_player() {
  607. // Used to find if someone may have fought the Unknown One and won the game already!
  608. int done = 0;
  609. user_info *test;
  610. int high = 0;
  611. int high_exp = 0;
  612. int id = 1;
  613. while(!done) {
  614. test = load_player(id);
  615. if(test->get_uid() != 0) {
  616. if(test->get_experience() > high_exp) {
  617. // Update highest player id and experience
  618. high_exp = test->get_experience();
  619. high = id;
  620. }
  621. } else {
  622. done = 1;
  623. }
  624. id += 1;
  625. } // Ok highest experiencing player found!
  626. test = load_player(high);
  627. return test;
  628. }
  629. void update_player(user_info *data) {
  630. sqlite3 *db;
  631. sqlite3_stmt *stmt;
  632. char sqlbuffer[1024];
  633. int rc = sqlite3_open("spaceconstruct.db3", &db);
  634. if(rc) { // Did we do a successful open?
  635. dolog("E: failed opening database %s", sqlite3_errmsg(db));
  636. sqlite3_close(db);
  637. od_exit(-1, FALSE);
  638. }
  639. sqlite3_busy_timeout(db, 5000);
  640. // Bad, don't do this... opens to SQL injection!
  641. //snprintf(sqlbuffer, 1024, "UPDATE user SET nick = '%s', experience = %d, metal = %d, fuel = %d, guns = %d, armors = %d, shields = %d, armorpoints = %d, shieldpoints = %d, hitpoints = %d WHERE uid=%d;",
  642. // data.nick, data.experience, data.metal, data.fuel, data.guns, data.armors, data.shields, data.armorpoints, data.shieldpoints, data.hitpoints, data.uid);
  643. strcpy(sqlbuffer, "UPDATE user SET nick=?, experience=?, metal=?, fuel=?, gun=?, armor=?, shield=?, armorpoints=?, shieldpoints=?, hitpoints=?, shieldsup=?, laston=? WHERE uid=?;");
  644. sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer) + 1, &stmt, NULL);
  645. // Bind All data values
  646. sqlite3_bind_text(stmt, 1, data->get_nick(), data->get_nick().length(), SQLITE_STATIC);
  647. sqlite3_bind_int(stmt, 2, data->get_experience());
  648. sqlite3_bind_int(stmt, 3, data->get_metal());
  649. sqlite3_bind_int(stmt, 4, data->get_fuel());
  650. sqlite3_bind_int(stmt, 5, data->get_gun());
  651. sqlite3_bind_int(stmt, 6, data->get_armor());
  652. sqlite3_bind_int(stmt, 7, data->get_shield());
  653. sqlite3_bind_int(stmt, 8, data->get_armorpoints());
  654. sqlite3_bind_int(stmt, 9, data->get_shieldpoints());
  655. sqlite3_bind_int(stmt, 10, data->get_hitpoints());
  656. sqlite3_bind_int(stmt, 11, data->get_shieldsup());
  657. sqlite3_bind_int(stmt, 12, data->get_laston());
  658. sqlite3_bind_int(stmt, 13, data->get_uid());
  659. // Execute
  660. rc = sqlite3_step(stmt);
  661. if(rc != SQLITE_DONE) {
  662. dolog("E: failed updating player=%d got error %s (%d)", data->get_uid(), sqlite3_errmsg(db), rc);
  663. sqlite3_finalize(stmt);
  664. sqlite3_close(db);
  665. od_exit(-1, FALSE);
  666. }
  667. sqlite3_finalize(stmt);
  668. sqlite3_close(db);
  669. }
  670. int create_player(user_info *data) {
  671. sqlite3 *db;
  672. sqlite3_stmt *stmt;
  673. char sqlbuffer[1024];
  674. int rc = sqlite3_open("spaceconstruct.db3", &db);
  675. if(rc) { // Did we do a successful open?
  676. dolog("E: failed opening database %s", sqlite3_errmsg(db));
  677. sqlite3_close(db);
  678. od_exit(-1, FALSE);
  679. }
  680. sqlite3_busy_timeout(db, 5000);
  681. strcpy(sqlbuffer, "INSERT INTO user (nick, real, experience, metal, fuel, gun, armor, shield, armorpoints, shieldpoints, hitpoints, shieldsup, laston) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);");
  682. sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer) + 1, &stmt, NULL);
  683. sqlite3_bind_text(stmt, 1, data->get_nick(), data->get_nick().length(), SQLITE_STATIC);
  684. sqlite3_bind_text(stmt, 2, data->get_real(), data->get_real().length(), SQLITE_STATIC);
  685. sqlite3_bind_int(stmt, 3, data->get_experience());
  686. sqlite3_bind_int(stmt, 4, data->get_metal());
  687. sqlite3_bind_int(stmt, 5, data->get_fuel());
  688. sqlite3_bind_int(stmt, 6, data->get_gun());
  689. sqlite3_bind_int(stmt, 7, data->get_armor());
  690. sqlite3_bind_int(stmt, 8, data->get_shield());
  691. sqlite3_bind_int(stmt, 9, data->get_armorpoints());
  692. sqlite3_bind_int(stmt, 10, data->get_shieldpoints());
  693. sqlite3_bind_int(stmt, 11, data->get_hitpoints());
  694. sqlite3_bind_int(stmt, 12, data->get_shieldsup());
  695. sqlite3_bind_int(stmt, 13, data->get_laston());
  696. rc = sqlite3_step(stmt);
  697. if(rc != SQLITE_DONE) {
  698. dolog("E: failed inserting player=%d got error %s (%d)", data->get_nick(), sqlite3_errmsg(db), rc);
  699. sqlite3_finalize(stmt);
  700. sqlite3_close(db);
  701. od_exit(-1, FALSE);
  702. }
  703. sqlite3_finalize(stmt);
  704. sqlite3_close(db);
  705. return 1; // Good
  706. }
  707. // Removed due to fact it throws off the internal id system, won't be able to list players
  708. /*void delete_player(int uuid) {
  709. sqlite3 *db;
  710. sqlite3_stmt *stmt;
  711. char sqlbuffer[256];
  712. int rc = sqlite3_open("spaceconstruct.db3", &db);
  713. if(rc) { // Did we do a successful open?
  714. dolog("E: failed opening database %s", sqlite3_errmsg(db));
  715. sqlite3_close(db);
  716. od_exit(-1, FALSE);
  717. }
  718. sqlite3_busy_timeout(db, 5000);
  719. strcpy(sqlbuffer, "DELETE FROM user WHERE uid=?;");
  720. sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer) + 1, &stmt, NULL);
  721. sqlite3_bind_int(stmt, 1, uuid);
  722. rc = sqlite3_step(stmt);
  723. if (rc != SQLITE_DONE){
  724. dolog("E: Unable to locate user with id=%d got %s (%d)", uuid, sqlite3_errmsg(db), rc);
  725. sqlite3_finalize(stmt);
  726. sqlite3_close(db);
  727. od_exit(-1, FALSE);
  728. }
  729. sqlite3_finalize(stmt);
  730. sqlite3_close(db);
  731. }*/
  732. void delete_players() {
  733. sqlite3 *db;
  734. sqlite3_stmt *stmt;
  735. char sqlbuffer[256];
  736. int rc = sqlite3_open("spaceconstruct.db3", &db);
  737. if(rc) { // Did we do a successful open?
  738. dolog("E: failed opening database %s", sqlite3_errmsg(db));
  739. sqlite3_close(db);
  740. od_exit(-1, FALSE);
  741. }
  742. sqlite3_busy_timeout(db, 5000);
  743. strcpy(sqlbuffer, "DELETE FROM user;");
  744. sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer) + 1, &stmt, NULL);
  745. rc = sqlite3_step(stmt);
  746. if (rc != SQLITE_DONE){
  747. dolog("E: Delete_players 1/2, Unexpected error got %s (%d)", sqlite3_errmsg(db), rc);
  748. sqlite3_finalize(stmt);
  749. sqlite3_close(db);
  750. od_exit(-1, FALSE);
  751. }
  752. strcpy(sqlbuffer, "UPDATE sqlite_sequence SET seq = 0 WHERE name='user';");
  753. sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer) + 1, &stmt, NULL);
  754. rc = sqlite3_step(stmt);
  755. if (rc != SQLITE_DONE){
  756. dolog("E: Delete_players 2/2, Unexpected error got %s (%d)", sqlite3_errmsg(db), rc);
  757. sqlite3_finalize(stmt);
  758. sqlite3_close(db);
  759. od_exit(-1, FALSE);
  760. }
  761. sqlite3_finalize(stmt);
  762. sqlite3_close(db);
  763. }
  764. int display_all_players() {
  765. sqlite3 *db;
  766. sqlite3_stmt *stmt;
  767. char sqlbuffer[1024];
  768. int rc = sqlite3_open("spaceconstruct.db3", &db);
  769. if(rc) { // Did we do a successful open?
  770. dolog("E: failed opening database %s", sqlite3_errmsg(db));
  771. sqlite3_close(db);
  772. od_exit(-1, FALSE);
  773. }
  774. sqlite3_busy_timeout(db, 5000);
  775. strcpy(sqlbuffer, "SELECT * from user ORDER BY experience DESC, nick DESC;");
  776. sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer) + 1, &stmt, NULL);
  777. int total = 0;
  778. od_printf("`bright green`___ The Players ___\r\n");
  779. while(sqlite3_step(stmt) == SQLITE_ROW) {
  780. od_printf("`bright white` %s (%d)\r\n", sqlite3_column_text(stmt, 1), sqlite3_column_int(stmt, 3));
  781. total += 1;
  782. }
  783. if(total > 1) {
  784. od_printf("`green`There are a total of `bright green`%d`green` players\r\n", total);
  785. } else if(total == 0) {
  786. od_printf("`green`There are a total of `bright green`%d`green` players\r\n", total);
  787. } else {
  788. od_printf("`green`There are a total of `bright green`%d`green` player\r\n", total);
  789. }
  790. sqlite3_finalize(stmt);
  791. sqlite3_close(db);
  792. return total;
  793. }
  794. int display_all_opponents(int us) {
  795. sqlite3 *db;
  796. sqlite3_stmt *stmt;
  797. char sqlbuffer[1024];
  798. int rc = sqlite3_open("spaceconstruct.db3", &db);
  799. if(rc) { // Did we do a successful open?
  800. dolog("E: failed opening database %s", sqlite3_errmsg(db));
  801. sqlite3_close(db);
  802. od_exit(-1, FALSE);
  803. }
  804. sqlite3_busy_timeout(db, 5000);
  805. strcpy(sqlbuffer, "SELECT * from user ORDER BY experience DESC, nick DESC;");
  806. sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer) + 1, &stmt, NULL);
  807. int total = 1;
  808. od_printf("`bright green`___ Target List ___\r\n");
  809. while(sqlite3_step(stmt) == SQLITE_ROW) {
  810. if(total != us) {
  811. od_printf("`bright black`(`bright white`%d`bright black`) `bright white`%s (%d)\r\n", total, sqlite3_column_text(stmt, 1), sqlite3_column_int(stmt, 3));
  812. }
  813. total += 1;
  814. }
  815. total -= 1;
  816. sqlite3_finalize(stmt);
  817. sqlite3_close(db);
  818. return total;
  819. }
  820. user_info* build_menu(user_info *my) {
  821. int done = 0;
  822. char ch;
  823. if(my->get_metal() != 0) {
  824. while(!done) {
  825. od_clr_scr();
  826. od_send_file("ansis/sc_build.ans");
  827. // Paint over sc_build.ans file
  828. od_set_cursor(3, 15);
  829. od_printf("%5d", my->calcGun());
  830. od_set_cursor(4, 15);
  831. od_printf("%5d", my->calcArmor());
  832. od_set_cursor(5, 15);
  833. od_printf("%5d", my->calcShield());
  834. od_set_cursor(9, 1);
  835. // Resuming normal operations
  836. od_printf("`bright yellow`You have %8d metal\r\n", my->get_metal());
  837. ch = od_get_answer("GgAaSsCcRr\r");
  838. switch(tolower(ch)) {
  839. case 'g':
  840. if(my->get_metal() >= my->calcGun()) {
  841. my->rmMetal(my->calcGun());
  842. my->addGun(1);
  843. od_printf("`bright green`Added a new gun!\r\n`white`");
  844. paws();
  845. } else {
  846. od_printf("`bright red`You don't have the %d metal for this!\r\n`white`", my->calcGun());
  847. paws();
  848. }
  849. break;
  850. case 'a':
  851. if(my->get_metal() >= my->calcArmor()) {
  852. my->rmMetal(my->calcArmor());
  853. my->addArmor(1);
  854. od_printf("`bright green`Added a new armor!\r\n`white`");
  855. paws();
  856. } else {
  857. od_printf("`bright red`You don't have the %d metal for this!\r\n`white`", my->calcArmor());
  858. paws();
  859. }
  860. break;
  861. case 's':
  862. if(my->get_metal() >= my->calcShield()) {
  863. my->rmMetal(my->calcShield());
  864. my->addShield(1);
  865. od_printf("`bright green`Added a new shield!\r\n`white`");
  866. paws();
  867. } else {
  868. od_printf("`bright red`You don't have the %d metal for this!\r\n`white`", my->calcShield());
  869. paws();
  870. }
  871. break;
  872. case '\r':
  873. case 'c':
  874. done = 1;
  875. break;
  876. case 'r':
  877. if(my->get_experience() >= 25) {
  878. if(my->get_metal() >= 25) {
  879. my->rmEXP(25);
  880. my->rmMetal(25);
  881. my->addFuel(5);
  882. od_printf("`bright green`Made 5 fuel using 25 experience and 25 metal!\r\n");
  883. paws();
  884. } else {
  885. od_printf("`bright red`You need 25 experience and 25 metal to make fuel!\r\n");
  886. paws();
  887. }
  888. } else {
  889. od_printf("`bright red`You need 25 experience and 25 metal to make fuel!\r\n");
  890. paws();
  891. }
  892. break;
  893. }
  894. }
  895. update_player(my);
  896. return my;
  897. } else {
  898. return my;
  899. }
  900. }
  901. void pvp_menu(user_info *my, user_info *targ) {
  902. int done = 0;
  903. int playerWon = 0;
  904. char ch;
  905. // We need to set the targ's hit points and such to max and enable us to "restore" them
  906. int temp_hp = targ->get_hitpoints();
  907. int temp_ap = targ->get_armorpoints();
  908. int temp_sp = targ->get_shieldpoints();
  909. int temp_su = targ->get_shieldsup();
  910. // Set Offline to max values
  911. int targ_dmg = (targ->get_gun() + 1); // Add bonus damage for offline
  912. targ->set_hitpoints(targ->calcHP());
  913. targ->set_armorpoints(targ->calcAP());
  914. targ->set_shieldpoints(targ->calcSP());
  915. targ->set_shieldsup(0);
  916. // Prep Combat values
  917. int fire = 0; // Fire Guns
  918. int flee = 0; // Run away
  919. int regen = 0; // Shields
  920. int test = 0;
  921. int test2 = 0;
  922. while(!done) {
  923. // Process Shields up
  924. if(temp_su != 0) {
  925. temp_su -= 1;
  926. }
  927. if(my->get_shieldsup() != 0) {
  928. my->rmSU(1);
  929. }
  930. // Process Crew repairing hitpoints
  931. if(targ->get_hitpoints() < targ->calcHP()) {
  932. regen = randrange(0, 100);
  933. if(regen >= 85) { // 15%, offline get a bonus 5% on repairing hull.
  934. targ->addHP(1);
  935. od_printf("`bright green`%s`green`'s crew repaired their hull for 1 point!\r\n", targ->get_nick());
  936. }
  937. }
  938. if(my->get_hitpoints() < my->calcHP()) {
  939. regen = randrange(0, 100);
  940. if(regen >= 90) { // 10%
  941. my->addHP(1);
  942. od_printf("`bright green`Your crew repaired your hull for 1 point!\r\n");
  943. }
  944. }
  945. // Process Shields regenerating and display player stats
  946. regen = randrange(0, 100);
  947. if(regen >= 75) { // 25%
  948. targ->regen();
  949. }
  950. od_printf("`bright white`%s has `bright cyan`%d`bright white` shields, %d armor and %d hitpoints left\r\n", targ->get_nick(), temp_sp, temp_ap, temp_hp);
  951. // Online Players Shields
  952. regen = randrange(0, 100);
  953. if(regen >= 80) { // 20%
  954. my->regen();
  955. }
  956. od_printf("`bright white`Your ship has `bright cyan`%d`bright white` shields, %d armor and %d hitpoints left\r\n", my->get_shieldpoints(), my->get_armorpoints(), my->get_hitpoints());
  957. // Form combat menu (Not allowing online to repair since offline can't really repair either)
  958. od_printf("`bright black`(`bright white`A`bright black`)`white`ttack\r\n");
  959. od_printf("`bright black`(`bright white`F`bright black`)`white`lee\r\n");
  960. // Online Players action
  961. ch = od_get_answer("AaFf\r");
  962. switch(tolower(ch)) {
  963. case '\r':
  964. case 'a':
  965. fire = randrange(0, 100);
  966. if(fire >= 50) {
  967. // Proccess online dealing damage to offline
  968. test = targ->takeDamage(my->get_gun());
  969. if(test == 0) {
  970. od_printf("`bright red`%s took %d damage!\r\n", targ->get_nick(), my->get_gun());
  971. } else {
  972. od_printf("`bright red`%s took %d damage, and blew up!\r\n", targ->get_nick(), my->get_gun());
  973. playerWon = 1; // Online beat offline
  974. }
  975. } else { // Online missed
  976. od_printf("`white`You missed!\r\n");
  977. }
  978. break;
  979. case 'f':
  980. flee = randrange(0, 100);
  981. if(flee >= 80) { // 20% chance the online flees
  982. playerWon = 3; // Online ran away from Offline
  983. done = 1;
  984. od_printf("`bright green`You ran away from %s!\r\n", targ->get_nick());
  985. } else {
  986. od_printf("`bright red`%s found you!\r\n", targ->get_nick());
  987. }
  988. break;
  989. } // Now for Offline to attack
  990. if(!playerWon) {
  991. fire = randrange(0, 100);
  992. if(fire >= 45) { // 55%, 5% bonus for offline
  993. test2 = my->takeDamage(targ_dmg);
  994. if(test2 == 0) {
  995. od_printf("`bright red`You took %d damage!\r\n", targ_dmg);
  996. } else {
  997. od_printf("`bright red`You took %d damage, and blew up!\r\n", targ_dmg);
  998. playerWon = 2;
  999. }
  1000. }
  1001. }
  1002. // Winning Move?
  1003. if(playerWon) {
  1004. switch(playerWon) {
  1005. case 1: // Online won over offline
  1006. if(targ->get_experience()) {
  1007. my->addEXP((targ->get_experience() / 2));
  1008. targ->rmEXP((targ->get_experience() / 2));
  1009. }
  1010. if(targ->get_metal()) {
  1011. my->addMetal((targ->get_metal() / 2));
  1012. targ->rmMetal((targ->get_metal() / 2));
  1013. }
  1014. my->rmFuel(4);
  1015. if(my->get_fuel() < 0) {
  1016. my->set_fuel(0);
  1017. }
  1018. od_printf("`bright green`Congrats on defeating %s!\r\n`white`", targ->get_nick());
  1019. break;
  1020. case 2: // Offline won over online!
  1021. if(my->get_experience()) {
  1022. targ->addEXP((my->get_experience() / 2));
  1023. my->rmEXP((my->get_experience() / 2));
  1024. }
  1025. if(my->get_metal()) {
  1026. targ->addMetal((my->get_metal() / 2));
  1027. my->rmMetal((my->get_metal() / 2));
  1028. }
  1029. my->rmFuel(4);
  1030. if(my->get_fuel() < 0) {
  1031. my->set_fuel(0);
  1032. }
  1033. od_printf("`bright red`Sorry for your loss! (We rebuild your ship)\r\n");
  1034. my->set_hitpoints(4);
  1035. my->set_armorpoints(8);
  1036. my->set_shieldpoints(0);
  1037. my->set_shieldsup(0);
  1038. my->set_armor(1);
  1039. my->set_shield(0);
  1040. my->set_gun(1);
  1041. break;
  1042. case 3:
  1043. my->rmFuel(4);
  1044. if(my->get_fuel() < 0) {
  1045. my->set_fuel(0);
  1046. }
  1047. break;
  1048. }
  1049. }
  1050. // Restore targ values from temps
  1051. targ->set_shieldsup(temp_su);
  1052. targ->set_armorpoints(temp_ap);
  1053. targ->set_hitpoints(temp_hp);
  1054. targ->set_shieldpoints(temp_sp);
  1055. // DOne, save
  1056. update_player(targ);
  1057. update_player(my);
  1058. }
  1059. }
  1060. void combat_menu(user_info *my, int targ_hp, int targ_dmg, int asteroid) {
  1061. int done = 0;
  1062. int playerWon = 0; // Did the player win? (1 = Yes, 2 = No, 3 = Flee)
  1063. char ch;
  1064. int armorRep = 0; // Can armor be repaired?
  1065. int temp = 0;
  1066. int temp1 = 0;
  1067. int temp2 = 0;
  1068. int temp_hp = targ_hp;
  1069. int flee = 0;
  1070. int fire = 0;
  1071. int regen = 0;
  1072. while(!done) {
  1073. if(asteroid == 0) {
  1074. od_printf("`bright white`Pirate has %d hitpoints left\r\n", targ_hp);
  1075. } else if(asteroid == 1) {
  1076. od_printf("`bright white`Asteroid has %d hitpoints left\r\n", targ_hp);
  1077. } else if(asteroid == 2) {
  1078. od_printf("`bright white`Unknown One has %d hitpoints left\r\n", targ_hp);
  1079. }
  1080. // Proccess Shields comming back online
  1081. if(my->get_shieldsup() != 0) {
  1082. my->rmSU(1);
  1083. }
  1084. // Proccess Crew repairing hull
  1085. if(my->get_hitpoints() < my->calcHP()) {
  1086. regen = randrange(0, 100);
  1087. if(regen >= 90) {
  1088. my->addHP(1);
  1089. }
  1090. }
  1091. // Proccess Shields Regen
  1092. regen = randrange(0, 100);
  1093. if(regen >= 80) { // 20%
  1094. my->regen();
  1095. }
  1096. od_printf("`bright white`Your ship has `bright cyan`%d`bright white` shields, %d armor and %d hitpoints left:\r\n", my->get_shieldpoints(), my->get_armorpoints(), my->get_hitpoints());
  1097. // Forming Combat Menu
  1098. od_printf("`bright black`(`bright white`A`bright black`)`white`ttack\r\n");
  1099. if(my->get_armorpoints() < my->calcAP()) {
  1100. od_printf("`bright black`(`bright white`R`bright black`)`white`epair Armor\r\n");
  1101. armorRep = 1; // Yes we can repair armor
  1102. }
  1103. od_printf("`bright black`(`bright white`F`bright black`)`white`lee\r\n");
  1104. // Proccess User action
  1105. ch = od_get_answer("AaRrFf\r");
  1106. switch(tolower(ch)) {
  1107. case '\r':
  1108. case 'a':
  1109. fire = rand() % 100;
  1110. if(asteroid == 1) { // Its a rock so allow player to hit it more frequent
  1111. fire -= 15;
  1112. }
  1113. if(fire >= 50) {
  1114. targ_hp -= my->get_gun();
  1115. if(targ_hp <= 0) {
  1116. od_printf("`bright red`Target Destroyed!\r\n");
  1117. done = 1;
  1118. playerWon = 1;
  1119. } else {
  1120. od_printf("`bright red`Target took %d damage!\r\n", my->get_gun());
  1121. }
  1122. } else {
  1123. od_printf("`white`You Missed!\r\n");
  1124. }
  1125. break;
  1126. case 'r':
  1127. if(armorRep) {
  1128. my->repair(false);
  1129. } else {
  1130. od_printf("`bright yellow`You don't seem to need repairs!\r\n");
  1131. }
  1132. break;
  1133. case 'f':
  1134. flee = rand() % 100;
  1135. if(asteroid == 1) {
  1136. flee = 100; // Always allow fleeing from asteroid
  1137. } else if(asteroid == 2) {
  1138. flee = 0; // Never allow fleeing from Unknown One
  1139. }
  1140. if(flee >= 82) {
  1141. playerWon = 3;
  1142. done = 1;
  1143. od_printf("`bright green`You ran away!\r\n");
  1144. } else {
  1145. od_printf("`bright red`Target found you!\r\n");
  1146. }
  1147. break;
  1148. } // If Enemy is alive proccess incomming attack
  1149. if(targ_hp > 0) {
  1150. targ_dmg;
  1151. fire = rand() % 100;
  1152. if(asteroid == 1) { // Yup it doesn't have gunz cuz it's rock.
  1153. fire = 0;
  1154. } else if(asteroid == 2) { // This is the Unknown One
  1155. fire += 5;
  1156. }
  1157. if(fire >= 40) {
  1158. temp = my->takeDamage(targ_dmg);
  1159. if(temp == 0) {
  1160. od_printf("`bright red`You took %d damage!\r\n", targ_dmg);
  1161. } else {
  1162. od_printf("`bright red`You took %d damage, and blew up!\r\n", targ_dmg);
  1163. playerWon = 2;
  1164. }
  1165. }
  1166. // firing
  1167. }
  1168. // Winning move?
  1169. if(playerWon) {
  1170. if(playerWon == 1) {
  1171. // Player won
  1172. my->addEXP((temp_hp + targ_dmg));
  1173. my->addMetal(temp_hp);
  1174. if(asteroid == 1) { // If asteroid reward more experience and metal!
  1175. my->addEXP(2);
  1176. my->addMetal(2);
  1177. } else if(asteroid == 2) { // If it was the boss!
  1178. my->addEXP(6000); // Ensure the game triggers a reset!
  1179. my->set_metal(0); // Stop the player!
  1180. my->set_fuel(2); // Prevent the player from doing anything else
  1181. }
  1182. my->rmFuel(2);
  1183. if(my->get_fuel() < 0) {
  1184. my->set_fuel(0);
  1185. }
  1186. od_printf("`bright green`Congrats on your victory!\r\n`white`");
  1187. } else if(playerWon == 2) {
  1188. // Target won
  1189. my->rmEXP((temp_hp + targ_dmg));
  1190. my->rmMetal(temp_hp);
  1191. my->rmFuel(3);
  1192. if(my->get_experience() < 0) {
  1193. my->set_experience(0);
  1194. }
  1195. if(my->get_metal() < 0) {
  1196. my->set_metal(0);
  1197. }
  1198. if(my->get_fuel() < 0) {
  1199. my->set_fuel(0);
  1200. }
  1201. od_printf("`bright red`Sorry for your loss! (We rebuild your ship)\r\n");
  1202. my->set_hitpoints(4);
  1203. my->set_armorpoints(8);
  1204. my->set_shieldpoints(0);
  1205. my->set_shieldsup(0);
  1206. my->set_armor(1);
  1207. my->set_shield(0);
  1208. my->set_gun(1);
  1209. } else if(playerWon == 3) {
  1210. // Chicken!
  1211. my->rmFuel(1);
  1212. }
  1213. }
  1214. }
  1215. update_player(my);
  1216. }
  1217. void about_game() {
  1218. int done = 0;
  1219. int page = 1;
  1220. while(!done) {
  1221. switch(page) {
  1222. case 1:
  1223. od_clr_scr();
  1224. od_send_file("ansis/sc_doc_1.ans");
  1225. paws();
  1226. break;
  1227. case 2:
  1228. od_clr_scr();
  1229. od_send_file("ansis/sc_doc_2.ans");
  1230. paws();
  1231. break;
  1232. case 3:
  1233. od_clr_scr();
  1234. od_send_file("ansis/sc_doc_3.ans");
  1235. paws();
  1236. break;
  1237. case 4:
  1238. od_clr_scr();
  1239. od_send_file("ansis/sc_doc_4.ans");
  1240. paws();
  1241. break;
  1242. case 5:
  1243. od_clr_scr();
  1244. od_send_file("ansis/sc_doc_5.ans");
  1245. paws();
  1246. break;
  1247. case 6:
  1248. done = 1;
  1249. break;
  1250. }
  1251. od_clr_scr();
  1252. page += 1;
  1253. }
  1254. }
  1255. void play_game() {
  1256. int done = 0;
  1257. char ch;
  1258. char ch1[256];
  1259. user_info *myself;
  1260. user_info *myself2;
  1261. user_info *testing;
  1262. int reset = 0;
  1263. int doRefuel = 0;
  1264. int pirate_encounter = 0;
  1265. int pirate_hp = 0; // Reused for asteroid
  1266. int pirate_dmg = 0; // Reused for asteroid
  1267. int asteroid = 0; // 1 means yes we need to remove damage... completely.
  1268. int me = locate_player(od_control.user_name);
  1269. int abort = 0;
  1270. if(me != 0) {
  1271. //myself = load_player(me);
  1272. testing = load_player(me);
  1273. if(testing->get_uid() != 0) {
  1274. myself = load_player(me);
  1275. }
  1276. dT age = fromDate(compareDate(myself->get_laston()));
  1277. // Process player inactivity
  1278. if(age.age >= 30) { // 30 days
  1279. od_printf("`bright green`Since you haven't played a while we have reset your account!\r\n");
  1280. me = 0;
  1281. reset = 1;
  1282. }
  1283. // Processing fuel regeneration
  1284. if(age.age != 0) {
  1285. doRefuel = 1;
  1286. }
  1287. }
  1288. if(me != 0) {
  1289. od_printf("`bright white`Welcome back `bright green`%s\r\n", myself->get_nick());
  1290. dT age = fromDate(compareDate(myself->get_laston()));
  1291. dolog("%s is now playing (G=%d A=%d S=%d F=%d M=%d AP=%d SP=%d (%d) HP=%d LO=%d or %d days)",
  1292. myself->get_nick(), myself->get_gun(), myself->get_armor(), myself->get_shield(), myself->get_fuel(), myself->get_metal(), myself->get_armorpoints(),
  1293. myself->get_shieldpoints(), myself->get_shieldsup(), myself->get_hitpoints(), myself->get_laston(), age.age);
  1294. myself->set_laston(dateStamp());
  1295. if(age.day != 0 || age.month != 0 || age.year != 0) {
  1296. od_printf("`bright yellow`Haven't seen you for");
  1297. }
  1298. if(age.day != 0) {
  1299. if(age.day > 1) {
  1300. od_printf(" %d days", age.day);
  1301. } else {
  1302. od_printf(" %d day", age.day);
  1303. }
  1304. }
  1305. if(age.month != 0) {
  1306. if(age.month > 1) {
  1307. od_printf(" %d months", age.month);
  1308. } else {
  1309. od_printf(" %d month", age.month);
  1310. }
  1311. }
  1312. if(age.year != 0) {
  1313. if(age.year > 1) {
  1314. od_printf(" %d years", age.year);
  1315. } else {
  1316. od_printf(" %d year", age.year);
  1317. }
  1318. }
  1319. if(age.day != 0 || age.month != 0 || age.year != 0) {
  1320. od_printf("\r\n");
  1321. }
  1322. if(doRefuel) {
  1323. if(myself->get_fuel() != 0) {
  1324. myself->addFuel((age.age * 2));
  1325. } else {
  1326. myself->addFuel(((age.age * 2) + 10));
  1327. od_printf("`bright green`For using all your fuel last time you get bonus fuel today!\r\n");
  1328. }
  1329. od_printf("`bright green`You now have %d fuel\r\n", myself->get_fuel());
  1330. }
  1331. update_player(myself);
  1332. paws();
  1333. } else {
  1334. od_printf("`bright white`You look new here. (Hit Enter to abort)\r\n");
  1335. while(done == 0) {
  1336. od_printf("`bright yellow`What's your name: ");
  1337. od_input_str(ch1, 26, 32, 126);
  1338. od_printf("\r\n");
  1339. if(strlen(ch1) > 0) {
  1340. //od_input_str(ch1, 256, 32, 126);
  1341. myself->set_nick(ch1);
  1342. } else {
  1343. od_clr_scr();
  1344. abort = 1;
  1345. done = 1;
  1346. od_printf("`bright red`Ok, come back later then...`white`\r\n");
  1347. paws();
  1348. }
  1349. if(abort == 0) {
  1350. od_printf("`bright white`Are you sure you want to be called `bright green`%s\r\n");
  1351. done = yesNo();
  1352. if(done) {
  1353. if(reset) { // So we are reseting the user, this wipes all values and uses update instead of create
  1354. myself->set_up(myself->get_uid(), myself->get_nick(), myself->get_real(), 0, dateStamp(), 1, 8, 0, 0, 0, 4, 1, 0, 10);
  1355. update_player(myself);
  1356. } else { // Brand new user
  1357. myself2->set_new(myself->get_nick(), od_control.user_name);
  1358. create_player(myself2);
  1359. myself = load_player(locate_player(od_control.user_name));
  1360. }
  1361. }
  1362. }
  1363. }
  1364. done = 0; // Reset this for our next loop.
  1365. }
  1366. // Ok user is here now lets ask what they want to do... build/attack
  1367. if(abort == 0) {
  1368. od_clr_scr();
  1369. while(!done) {
  1370. od_printf("`bright yellow`You have %d fuel left for today,\r\n", myself->get_fuel());
  1371. if(myself->get_shieldsup() == 0) {
  1372. od_printf("`bright yellow`Your ship has `bright cyan`%d`bright yellow` shields, %d armor and %d hitpoints left:\r\n", myself->get_shieldpoints(), myself->get_armorpoints(), myself->get_hitpoints());
  1373. } else {
  1374. od_printf("`bright yellow`Your ship has %d armor, `bright cyan`%d`bright yellow` shields and %d hitpoints left:\r\n", myself->get_shieldpoints(), myself->get_armorpoints(), myself->get_hitpoints());
  1375. }
  1376. if(myself->get_armorpoints() < myself->calcAP()) {
  1377. od_printf("`bright black`(`bright white`R`bright black`)`white`epair Armor\r\n");
  1378. }
  1379. if(myself->get_shieldpoints() < myself->calcSP() || myself->get_shieldsup() != 0) {
  1380. od_printf("`bright black`(`bright white`G`bright black`)`white`enerate Shields\r\n");
  1381. }
  1382. if(myself->get_fuel() >= 2) {
  1383. od_send_file("ansis/sc_gameh.ans");
  1384. ch = od_get_answer("SsHhBbQqRrGgLlVv");
  1385. } else {
  1386. od_send_file("ansis/sc_gamel.ans");
  1387. ch = od_get_answer("BbQqRrGgLlVv");
  1388. }
  1389. od_clr_scr();
  1390. switch(tolower(ch)) {
  1391. case 's':
  1392. if(myself->get_fuel() >= 1) {
  1393. pirate_encounter = rand() % 100;
  1394. if(pirate_encounter >= 75) { // 25% chance to encounter a Pirate, or Unknown One
  1395. if(myself->get_experience() > 3000) {
  1396. if(pirate_encounter >= 95) { // 5% chance to encounter unknown one
  1397. od_printf("`bright yellow`You encounter the `bright red`Unknown One\r\n`white`");
  1398. asteroid = 2;
  1399. } else {
  1400. od_printf("`bright yellow`You encounter a `bright red`Pirate\r\n`white`");
  1401. asteroid = 0;
  1402. }
  1403. } else { // The player is not skilled enough to fight the unknown one
  1404. od_printf("`bright yellow`You encounter a `bright red`Pirate\r\n`white`");
  1405. asteroid = 0;
  1406. }
  1407. } else { // 75% chance to encounter a Asteroid
  1408. od_printf("`bright yellow`You encounter a `bright red`Asteroid\r\n`white`");
  1409. asteroid = 1;
  1410. }
  1411. if(asteroid == 0 || asteroid == 2) {
  1412. pirate_hp = ((myself->get_hitpoints() + 1) + (randrange(0, 4)));
  1413. if(asteroid == 2) { // Increase boss hitpoints
  1414. pirate_hp += 10;
  1415. }
  1416. // Increase difficulty based on experience...
  1417. pirate_dmg = (myself->get_experience() / 500);
  1418. if(pirate_dmg == 0) { // Always deal damage
  1419. pirate_dmg = 1;
  1420. }
  1421. if(asteroid == 2) { // Increase boss damage
  1422. pirate_dmg += 2;
  1423. }
  1424. // Send off to combat menu
  1425. combat_menu(myself, pirate_hp, pirate_dmg, asteroid);
  1426. } else {
  1427. pirate_hp = (myself->get_hitpoints() + 1) + (rand() % 10);
  1428. // Send off to combat menu
  1429. combat_menu(myself, pirate_hp, 0, asteroid);
  1430. }
  1431. }
  1432. break;
  1433. case 'h':
  1434. if(myself->get_fuel() >= 4) {
  1435. int targs = display_all_opponents(myself->get_uid());
  1436. int targg = 1;
  1437. int done2 = 0;
  1438. if(targg == myself->get_uid()) {
  1439. targg += 1;
  1440. }
  1441. while(!done2) {
  1442. od_printf("`bright red`Targetting: %d\r\n", targg);
  1443. if(yesNo()) {
  1444. done2 = 1;
  1445. } else if(targg < targs){
  1446. targg += 1;
  1447. } else {
  1448. done2 = 1;
  1449. od_printf("`bright red`ABORTED!\r\n");
  1450. break;
  1451. }
  1452. }
  1453. user_info *targ = load_player(targg);
  1454. if(targ->get_uid() != 0) {
  1455. // I need to add some limits in here else someone could attack weaker players!
  1456. int proceed = 0;
  1457. int temp = targ->get_experience() + 1000; // Prevent the person from selecting a player that is higher than them
  1458. int temp1 = targ->get_experience() - 500; // Prevent the person from selecting a player that is lower than them
  1459. if(temp1 > 0) {
  1460. temp1 = 0;
  1461. }
  1462. if(temp > myself->get_experience() && temp1 < myself->get_experience()) {
  1463. proceed = 1;
  1464. }
  1465. if(proceed) {
  1466. pvp_menu(myself, targ);
  1467. } else {
  1468. od_printf("`bright white`Please select a opponent within your range of expertise!\r\n");
  1469. break;
  1470. }
  1471. }
  1472. } else {
  1473. od_printf("`bright white`You need 4 fuel to fight another player!\r\n`white`");
  1474. }
  1475. break;
  1476. case 'b':
  1477. if(myself->get_metal() != 0) {
  1478. // Send off to build menu
  1479. od_clr_scr();
  1480. //od_send_file("ansis/sc_build.ans", FALSE);
  1481. myself = build_menu(myself);
  1482. } else {
  1483. od_printf("`bright white`I am sorry you have no metal go fight.`white`\r\n");
  1484. }
  1485. break;
  1486. case 'q':
  1487. done = 1;
  1488. break;
  1489. case 'r':
  1490. if(myself->get_armorpoints() < (myself->get_armor() * 8)) {
  1491. myself->repair(true);
  1492. update_player(myself);
  1493. } else {
  1494. od_printf("`bright yellow`You don't seem to need repairs!\r\n`white`");
  1495. }
  1496. break;
  1497. case 'g':
  1498. if(myself->get_shieldpoints() < myself->calcSP() || myself->get_shieldsup() != 0) {
  1499. myself->regen();
  1500. update_player(myself);
  1501. } else {
  1502. od_printf("`bright yellow`You don't seem to need to regenerate shields!\r\n`white`");
  1503. }
  1504. break;
  1505. case 'v':
  1506. od_printf("`bright white` ___ %s's Ship Status ___\r\n", myself->get_nick());
  1507. od_printf("`bright white`Items: # Installed: Metal to Upgrade:\r\n");
  1508. od_printf("`bright red`Guns: %8d %8d\r\n", myself->get_gun(), myself->calcGun());
  1509. od_printf("`bright yellow`Armor: %8d %8d\r\n", myself->get_armor(), myself->calcArmor());
  1510. od_printf("`bright cyan`Shields: %8d %8d\r\n", myself->get_shield(), myself->calcShield());
  1511. od_printf("`bright white`\r\n ___ Situation Report ___\r\n");
  1512. od_printf("`bright white`Items: Maximum: Current:\r\n");
  1513. od_printf("`bright green`Hitpoints: %8d %8d\r\n", myself->calcHP(), myself->get_hitpoints());
  1514. od_printf("`bright yellow`Armor: %8d %8d\r\n", myself->calcAP(), myself->get_armorpoints());
  1515. od_printf("`bright cyan`Shields: %8d %8d\r\n", myself->calcSP(), myself->get_shieldpoints());
  1516. od_printf("`bright magenta`Experience: %8d\r\n", myself->get_experience());
  1517. od_printf("`bright magenta`Fuel: %8d\r\n", myself->get_fuel());
  1518. od_printf("`white`Metal: %8d\r\n", myself->get_metal());
  1519. paws();
  1520. od_clr_scr();
  1521. break;
  1522. }
  1523. }
  1524. }
  1525. }
  1526. void sysop_menu() {
  1527. int done = 0;
  1528. char ch;
  1529. int targ_ply = 1;
  1530. int targ_max = 0;
  1531. int done1 = 0;
  1532. user_info *targ;
  1533. while(!done) {
  1534. od_clr_scr();
  1535. od_send_file("ansis/sc_sysop.ans");
  1536. ch = od_get_answer("RrNnQq");
  1537. //od_printf("\r\n");
  1538. switch(tolower(ch)) {
  1539. case 'q':
  1540. done = 1;
  1541. break;
  1542. case 'r':
  1543. od_printf("`bright red`__ Reset ___\r\n");
  1544. od_printf("`bright red`DANGER THIS WILL DELETE ALL PLAYERS IN GAME\r\n");
  1545. if(yesNo() == 0) {
  1546. od_printf("`bright red`ABORTED!\r\n");
  1547. paws();
  1548. break;
  1549. }
  1550. dolog("%s issued reset", od_control.user_handle);
  1551. delete_players();
  1552. paws();
  1553. break;
  1554. case 'n':
  1555. od_printf("`bright red`__ New Day ___\r\n");
  1556. while(!done1) {
  1557. targ = load_player(targ_ply);
  1558. if(targ->get_uid() != 0) {
  1559. targ->rmLaston(1); // Travel back 1 day
  1560. update_player(targ); // Save
  1561. } else {
  1562. done1 = 1;
  1563. }
  1564. targ_ply += 1;
  1565. targ_max += 1;
  1566. }
  1567. od_printf("`bright red`%d players affected\r\n", (targ_max - 1));
  1568. targ_ply = 1;
  1569. targ_max = 0;
  1570. done1 = 0;
  1571. dolog("%s issued new day", od_control.user_handle);
  1572. paws();
  1573. break;
  1574. }
  1575. }
  1576. od_clr_scr();
  1577. }
  1578. void cleanMe() {
  1579. rel_lock();
  1580. od_exit(0, FALSE);
  1581. }
  1582. void main_menu() {
  1583. // Main menu for once things are done being initalized
  1584. int done = 0;
  1585. int done1 = 0; // For Reset Game and for New Day... also for Debug
  1586. int targ_ply = 1; // Target player to perform op!
  1587. int targ_max = 0; // Total number of players affected!
  1588. user_info *targ; // Player Struct
  1589. user_info *test;
  1590. dT targ_age; // Date Struct
  1591. dT test2;
  1592. char targ_real[256];
  1593. char ch;
  1594. int auth; // Security
  1595. char sys[48]; // Security
  1596. // 0 means we got the lock first, 1 means someone else has it already!
  1597. while(!done) {
  1598. od_clr_scr();
  1599. od_send_file("ansis/sc_main.ans");
  1600. ch = od_get_answer("PpLlVvQqSsAa");
  1601. od_clr_scr();
  1602. switch(tolower(ch)){
  1603. case 'q':
  1604. // Quit
  1605. done = 1;
  1606. break;
  1607. case 'p':
  1608. // Play Game (Default if the player just hits enter)
  1609. // Check to see if we have a winner if so refuse to let anyone on! (Wait 3 days then reset the game!)
  1610. test = highest_player();
  1611. test2 = fromDate(compareDate(test->get_laston()));
  1612. if(test->get_experience() >= 8000) { // If the player has the minimum of 3000 exp to fight the Unkown One and wins earning 5000 thats 8000 minimum
  1613. if(test2.age >= 3) { // Auto reset the game or not allow the player to play!
  1614. delete_players();
  1615. dolog("Auto-Reset Occured!");
  1616. od_printf("`bright green`Game has been reset!\r\n");
  1617. paws();
  1618. } else { // And the lucky winner is!
  1619. int resetage = 3 - test2.age;
  1620. od_printf("`bright green`%s has won the game!\r\n", test->get_nick());
  1621. od_printf("`bright green`The Game will reset in %d days!\r\n", resetage);
  1622. paws();
  1623. break;
  1624. }
  1625. }
  1626. play_game();
  1627. break;
  1628. case 'a':
  1629. about_game();
  1630. break;
  1631. case 'l':
  1632. // List Players in the game
  1633. display_all_players();
  1634. paws();
  1635. break;
  1636. case 'v':
  1637. // Version
  1638. od_clr_scr();
  1639. od_printf("`bright yellow`_____________________________\r\n");
  1640. od_printf("`bright yellow` Space Construct v%d.%d-%s\r\n", VERSION_MAJOR, VERSION_MINOR, VERSION_TYPE);
  1641. od_printf("`bright yellow` By: Beanzilla\r\n");
  1642. od_printf("`bright yellow` FsxNet 21:4/110\r\n");
  1643. od_printf("`bright yellow` HappyNet 637:1/110\r\n");
  1644. od_printf("`bright yellow`_____________________________\r\n");
  1645. paws();
  1646. break;
  1647. case 's':
  1648. auth = 0;
  1649. if(allowDev && strcmp(od_control.user_handle, "Beanzilla") == 0) {
  1650. od_printf("`bright green`Access Granted\r\n");
  1651. auth = 1;
  1652. } else {
  1653. od_printf("`bright red`Sysop Password: ");
  1654. strcpy(sys, "");
  1655. od_input_str(sys, 32, 32, 126);
  1656. od_clr_scr(); // Add a bit of protecton
  1657. if(sys == sysop_pass) {
  1658. od_printf("`bright green`Access Granted\r\n");
  1659. auth = 1;
  1660. }
  1661. }
  1662. // Give only Sysop and dev access to restricted commands
  1663. if(auth) {
  1664. paws();
  1665. sysop_menu();
  1666. } else {
  1667. od_printf("`bright red`Access Denied\r\n");
  1668. paws();
  1669. }
  1670. break;
  1671. }
  1672. }
  1673. }
  1674. int main(int argc, char *argv[]) {
  1675. od_parse_cmd_line(argc, argv);
  1676. // Initiate Door
  1677. od_init();
  1678. od_clr_scr();
  1679. check_database(); // Ensure the users table exists.
  1680. // Debug System
  1681. if (debug) {
  1682. dolog("=== Debug ===");
  1683. od_printf("`white`=== Debug ===\r\n");
  1684. od_printf("DropFile...\r\n");
  1685. log_drop();
  1686. int test = check_lock();
  1687. if (test == 0) {
  1688. od_printf("Lock is: Avalible\r\n");
  1689. od_printf("Database...\r\n");
  1690. db_test();
  1691. } else {
  1692. od_printf("Lock is: Taken\r\n");
  1693. od_printf("CANCELED Database Dump\r\n");
  1694. }
  1695. paws();
  1696. od_clr_scr();
  1697. } else {
  1698. dolog("--- Debug ---");
  1699. }
  1700. inuse = check_lock();
  1701. if(!inuse) {
  1702. int lock = grab_lock();
  1703. if(!lock) {
  1704. od_printf("`white`Something went wrong getting the lock.\r\n");
  1705. paws();
  1706. od_exit(0, FALSE);
  1707. } else {
  1708. atexit(cleanMe);
  1709. main_menu();
  1710. }
  1711. } else {
  1712. od_send_file("ansis/sc_inuse.ans");
  1713. paws();
  1714. od_exit(0, FALSE);
  1715. }
  1716. }