|
@@ -306,9 +306,10 @@ int locate_player(char name[]) {
|
|
|
sqlite3_bind_text(stmt, 1, name, strlen(name), SQLITE_STATIC);
|
|
|
rc = sqlite3_step(stmt);
|
|
|
if (rc == SQLITE_ROW) {
|
|
|
- //dolog("User=%s uid=%d", name, sqlite3_column_int(stmt, 0));
|
|
|
+ // Return user id
|
|
|
result = sqlite3_column_int(stmt, 0);
|
|
|
} else {
|
|
|
+ // User not found
|
|
|
dolog("W: Unable to locate user=%s", name);
|
|
|
result = 0;
|
|
|
} // Clean Up, return results
|
|
@@ -317,6 +318,33 @@ int locate_player(char name[]) {
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
+void check_database() {
|
|
|
+ // If the table users does not exist make it.
|
|
|
+ sqlite3 *db;
|
|
|
+ sqlite3_stmt *stmt;
|
|
|
+ char sqlbuffer[256];
|
|
|
+ int rc = sqlite3_open("spaceconstruct.db3", &db);
|
|
|
+ if(rc) {
|
|
|
+ dolog("C: Failed opening database %s (%d)", sqlite3_errmsg(db), rc);
|
|
|
+ sqlite3_close(db);
|
|
|
+ od_exit(-1, FALSE);
|
|
|
+ }
|
|
|
+ sqlite3_busy_timeout(db, 5000);
|
|
|
+ strcpy(sqlbuffer, "SELCECT COUNT(*) FROM user;");
|
|
|
+ sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer) + 1, &stmt, NULL);
|
|
|
+ rc = sqlite3_step(stmt);
|
|
|
+ if(rc == SQLITE_ROW) {
|
|
|
+ // Good
|
|
|
+ } else {
|
|
|
+ // Bad, Create table
|
|
|
+ char *errmsg;
|
|
|
+ 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,`guns` INTEGER,`armors` INTEGER,`shields` INTEGER,`armorpoints` INTEGER,`shieldpoints` INTEGER,`hitpoints` INTEGER,`shieldsup` INTEGER,`laston` INTEGER);", NULL, NULL, &errmsg);
|
|
|
+ dolog("W: Users table did not exist created with %d", rc);
|
|
|
+ }
|
|
|
+ sqlite3_finalize(stmt);
|
|
|
+ sqlite3_close(db);
|
|
|
+}
|
|
|
+
|
|
|
user_inf load_player(int uuid) {
|
|
|
// Returns a player Structure from database
|
|
|
sqlite3 *db;
|
|
@@ -1691,6 +1719,7 @@ int main(int argc, char *argv[]) {
|
|
|
// Initiate Door
|
|
|
od_init();
|
|
|
od_clr_scr();
|
|
|
+ check_database(); // Ensure the users table exists.
|
|
|
|
|
|
// Debug System
|
|
|
if (debug) {
|