From a5e039b786474aff1d122a1689a1845e2bd710a9 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Sun, 26 Jul 2015 16:32:15 +0200 Subject: [PATCH] Expanded sections table with new columns: - Lot id : Referencing lot (as one lot may have n sections) - Type : Section type (residential, commercial, road, etc.) - Sub type : Sub section type (hut, house, skyscraper, etc.) - Neighbour left id : Connected section id to left - Neighbour right id : Connected section id to right - Neighbour bottom id : Connected section id to bottom (horizontal) - Neighbour top id : Connected section id to top (horizontal) - Neighbour up id : Connected section id to upward - Neighbour down id : Connected section id to downward Signed-off-by: Roland Haeder --- .../class_CitySectionsDatabaseWrapper.php | 28 +++++++++++++++++-- docs/ideas.txt | 2 +- 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/application/city/main/database/frontend/city_sections/class_CitySectionsDatabaseWrapper.php b/application/city/main/database/frontend/city_sections/class_CitySectionsDatabaseWrapper.php index 0ba967d..6e46284 100644 --- a/application/city/main/database/frontend/city_sections/class_CitySectionsDatabaseWrapper.php +++ b/application/city/main/database/frontend/city_sections/class_CitySectionsDatabaseWrapper.php @@ -25,9 +25,31 @@ class CitySectionsDatabaseWrapper extends BaseDatabaseWrapper implements CitySec // Constants for database table names const DB_TABLE_CITY_SECTIONS = 'city_sections'; - // Constants for database column names - const DB_COLUMN_SECTION_ID = 'city_section_id'; - const DB_COLUMN_CITY_ID = 'city_id'; + // Section id, an referenced city id and lot id + const DB_COLUMN_SECTION_ID = 'city_section_id'; + const DB_COLUMN_CITY_ID = 'city_id'; + const DB_COLUMN_LOT_ID = 'lot_id'; + + // Section and sub type (e.g. residential, hut) + const DB_COLUMN_SECTION_TYPE = 'section_type'; + const DB_COLUMN_SECTION_SUB_TYPE = 'section_sub_type'; + + // X-Y-Z position + const DB_COLUMN_SECTION_POSITION_X = 'section_position_x'; + const DB_COLUMN_SECTION_POSITION_Y = 'section_position_y'; + const DB_COLUMN_SECTION_POSITION_Z = 'section_position_z'; + + // Connected neigbouring sections + const DB_COLUMN_SECTION_NEIGHBOUR_LEFT_ID = 'section_neighbour_left_id'; + const DB_COLUMN_SECTION_NEIGHBOUR_RIGHT_ID = 'section_neighbour_right_id'; + const DB_COLUMN_SECTION_NEIGHBOUR_TOP_ID = 'section_neighbour_top_id'; + const DB_COLUMN_SECTION_NEIGHBOUR_BOTTOM_ID = 'section_neighbour_bottom_id'; + const DB_COLUMN_SECTION_NEIGHBOUR_UP_ID = 'section_neighbour_up_id'; + const DB_COLUMN_SECTION_NEIGHBOUR_DOWN_ID = 'section_neighbour_down_id'; + + // Other settings: + // Reserved section (see documentation) + const DB_COLUMN_SECTION_RESERVED = 'section_reserved'; /** * Protected constructor diff --git a/docs/ideas.txt b/docs/ideas.txt index 8cea362..008f2c2 100644 --- a/docs/ideas.txt +++ b/docs/ideas.txt @@ -5,8 +5,8 @@ Not included in mind map: - Simulation speed: How many simulation seconds per real second + Simple method to "get" (calculate) currently elapsed simulation time + + User may change this through client + Game daemon can be stopped for a long time and city continues to grow if the daemon is running again. - + User may change this through client [EOF] -- 2.39.5