From 5583ba432389bad0df2dc8fbbca71541ce9086bd Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Wed, 4 Feb 2015 16:52:22 +1100 Subject: [PATCH] Updated TODO comments --- client/gameplay_scenes/in_world_scene.cpp | 2 +- rsc/scripts/setup_server.sql | 2 +- todo.txt | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/client/gameplay_scenes/in_world_scene.cpp b/client/gameplay_scenes/in_world_scene.cpp index d5d47ea..46db8e0 100644 --- a/client/gameplay_scenes/in_world_scene.cpp +++ b/client/gameplay_scenes/in_world_scene.cpp @@ -161,7 +161,7 @@ void InWorld::FrameEnd() { } void InWorld::RenderFrame() { - SDL_FillRect(GetScreen(), 0, 0); +// SDL_FillRect(GetScreen(), 0, 0); Render(GetScreen()); SDL_Flip(GetScreen()); fps.Calculate(); diff --git a/rsc/scripts/setup_server.sql b/rsc/scripts/setup_server.sql index e7e9c63..5109ae8 100644 --- a/rsc/scripts/setup_server.sql +++ b/rsc/scripts/setup_server.sql @@ -2,7 +2,7 @@ CREATE TABLE IF NOT EXISTS Accounts ( uid INTEGER PRIMARY KEY AUTOINCREMENT, - username varchar(100) UNIQUE, + username varchar(100) UNIQUE, --TODO: Swap username for email address --TODO: server-client security -- passhash varchar(100), diff --git a/todo.txt b/todo.txt index 0ff79a3..c4582aa 100644 --- a/todo.txt +++ b/todo.txt @@ -7,6 +7,7 @@ TODO: Account passwords (list) * ... * salts & hashes +TODO: Make sure login errors are sent to the client TODO: Split config.cfg in two, one for the server and the client TODO: Add the "home" parameter to the server's config file TODO: Waypoints, with positions and trigger zones (collision areas) for doors, monster spawns, etc.