소스 검색

Updated DB to handle shieldsup int

  shieldsup:
  12th column of db,
  int.

  Purpose is so if this contains non-zero shields do not regenerate till
value is zero deducted per attack... based on level (experience/500).
david 4 년 전
부모
커밋
1056929167
2개의 변경된 파일12개의 추가작업 그리고 6개의 파일을 삭제
  1. 2 0
      .gitignore
  2. 10 6
      main.c

+ 2 - 0
.gitignore

@@ -1,3 +1,5 @@
 build/
 build/
 example-sqlite3/
 example-sqlite3/
 MagiDoor/
 MagiDoor/
+logs/
+spaceconstruct.db3

+ 10 - 6
main.c

@@ -55,6 +55,7 @@ typedef struct user_info {
   int hitpoints; // Total hitpoints till we die (Rules for taking damage, shields first then armor then hitpoints)
   int hitpoints; // Total hitpoints till we die (Rules for taking damage, shields first then armor then hitpoints)
   int armorpoints; // Points we get from armors (Repairable but costs 1 metal per point, but can break if taking too much damage)
   int armorpoints; // Points we get from armors (Repairable but costs 1 metal per point, but can break if taking too much damage)
   int shieldpoints; // Points we get from shields (Self-Regenerates, and does not get destroyed)
   int shieldpoints; // Points we get from shields (Self-Regenerates, and does not get destroyed)
+  int shieldsup; // 0 means yes, anything else means shields are offline, deduct if not 0 for each attack.
   char nick[256]; // What they go by on score board, this allows duping since we really go by real
   char nick[256]; // What they go by on score board, this allows duping since we really go by real
   char real[256]; // Their real name to match with drop file info, prevents someone from loging in as another
   char real[256]; // Their real name to match with drop file info, prevents someone from loging in as another
 } user_inf;
 } user_inf;
@@ -158,7 +159,9 @@ void db_test() {
       sqlite3_column_name(stmt, 10), // int, shieldpoints
       sqlite3_column_name(stmt, 10), // int, shieldpoints
       sqlite3_column_int(stmt, 10),
       sqlite3_column_int(stmt, 10),
       sqlite3_column_name(stmt, 11), // int,  hitpoints
       sqlite3_column_name(stmt, 11), // int,  hitpoints
-      sqlite3_column_int(stmt, 11)
+      sqlite3_column_int(stmt, 11),
+      sqlite3_column_name(stmt, 12), // int,  shieldsup
+      sqlite3_column_int(stmt, 12)
     );
     );
   } // Clean up database
   } // Clean up database
   sqlite3_finalize(stmt);
   sqlite3_finalize(stmt);
@@ -310,6 +313,7 @@ user_inf load_player(int uuid) {
     result.armorpoints = sqlite3_column_int(stmt, 9);
     result.armorpoints = sqlite3_column_int(stmt, 9);
     result.shieldpoints = sqlite3_column_int(stmt, 10);
     result.shieldpoints = sqlite3_column_int(stmt, 10);
     result.hitpoints = sqlite3_column_int(stmt, 11);
     result.hitpoints = sqlite3_column_int(stmt, 11);
+    result.shieldsup = sqlite3_column_int(stmt, 12);
   } else {
   } else {
     dolog("E: Unable to locate user with id=%d", uuid);
     dolog("E: Unable to locate user with id=%d", uuid);
     sqlite3_finalize(stmt);
     sqlite3_finalize(stmt);
@@ -335,7 +339,7 @@ void update_player(user_inf data) {
   // Bad, don't do this... opens to SQL injection!
   // Bad, don't do this... opens to SQL injection!
   //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;",
   //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;",
   //  data.nick, data.experience, data.metal, data.fuel, data.guns, data.armors, data.shields, data.armorpoints, data.shieldpoints, data.hitpoints, data.uid);
   //  data.nick, data.experience, data.metal, data.fuel, data.guns, data.armors, data.shields, data.armorpoints, data.shieldpoints, data.hitpoints, data.uid);
-  strcpy(sqlbuffer, "UPDATE user SET nick=?, experience=?, metal=?, fuel=?, guns=?, armors=?, shields=?, armorpoints=?, shieldpoints=?, hitpoints=? WHERE uid=?;");
+  strcpy(sqlbuffer, "UPDATE user SET nick=?, experience=?, metal=?, fuel=?, guns=?, armors=?, shields=?, armorpoints=?, shieldpoints=?, hitpoints=?, shieldsup=? WHERE uid=?;");
   sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer) + 1, &stmt, NULL);
   sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer) + 1, &stmt, NULL);
   // Bind All data values
   // Bind All data values
   sqlite3_bind_text(stmt, 1, data.nick, strlen(data.nick), SQLITE_STATIC);
   sqlite3_bind_text(stmt, 1, data.nick, strlen(data.nick), SQLITE_STATIC);
@@ -348,7 +352,8 @@ void update_player(user_inf data) {
   sqlite3_bind_int(stmt, 8, data.armorpoints);
   sqlite3_bind_int(stmt, 8, data.armorpoints);
   sqlite3_bind_int(stmt, 9, data.shieldpoints);
   sqlite3_bind_int(stmt, 9, data.shieldpoints);
   sqlite3_bind_int(stmt, 10, data.hitpoints);
   sqlite3_bind_int(stmt, 10, data.hitpoints);
-  sqlite3_bind_int(stmt, 11, data.uid);
+  sqlite3_bind_int(stmt, 11, data.shieldsup);
+  sqlite3_bind_int(stmt, 12, data.uid);
   // Execute
   // Execute
   rc = sqlite3_step(stmt);
   rc = sqlite3_step(stmt);
   if(rc != SQLITE_DONE) {
   if(rc != SQLITE_DONE) {
@@ -479,9 +484,8 @@ int main(int argc, char **argv) {
 
 
   // Main Menu
   // Main Menu
   //main_menu();
   //main_menu();
-  user_inf ply = load_player(locate_player(mdcontrol.user_firstname, mdcontrol.user_lastname));
-  ply.experience += 10;
-  update_player(ply);
+  //user_inf ply = load_player(locate_player(mdcontrol.user_firstname, mdcontrol.user_lastname));
+  //update_player(ply);
 
 
   // Unlock game
   // Unlock game
   if (inuse == 0) {
   if (inuse == 0) {