2018-10-23 09:38:02 +02:00
|
|
|
-- LegacyWorlds Beta 6
|
|
|
|
-- PostgreSQL database scripts
|
|
|
|
--
|
|
|
|
-- Empires and alliances
|
|
|
|
--
|
|
|
|
-- Copyright(C) 2004-2010, DeepClone Development
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Empires
|
|
|
|
--
|
|
|
|
|
|
|
|
CREATE TABLE emp.empires(
|
|
|
|
name_id INT NOT NULL PRIMARY KEY ,
|
|
|
|
cash REAL NOT NULL
|
|
|
|
CHECK( cash >= 0 ),
|
|
|
|
debt REAL NOT NULL DEFAULT 0
|
|
|
|
CHECK( debt >= 0)
|
|
|
|
);
|
|
|
|
|
|
|
|
ALTER TABLE emp.empires
|
|
|
|
ADD CONSTRAINT fk_empires_name
|
|
|
|
FOREIGN KEY (name_id) REFERENCES naming.empire_names;
|
|
|
|
|
|
|
|
|
2011-12-19 11:57:08 +01:00
|
|
|
/*
|
|
|
|
* Empire resources
|
|
|
|
* -----------------
|
|
|
|
*
|
|
|
|
* This table contains the list of resources possessed and owed by each
|
|
|
|
* empire.
|
|
|
|
*/
|
|
|
|
|
|
|
|
CREATE TABLE emp.resources(
|
|
|
|
/* Identifier of the empire */
|
|
|
|
empire_id INT NOT NULL ,
|
|
|
|
|
|
|
|
/* Identifier of the type of resource */
|
|
|
|
resource_name_id INT NOT NULL ,
|
|
|
|
|
|
|
|
/* Amount of that specific resource possessed by the empire */
|
|
|
|
empres_possessed DOUBLE PRECISION NOT NULL
|
|
|
|
DEFAULT 0
|
|
|
|
CHECK( empres_possessed >= 0 ) ,
|
|
|
|
|
|
|
|
/* Amount of that specific resource owed by the empire. This value is
|
|
|
|
* used to accumulate debts and that, in turn, is used when computing
|
|
|
|
* debt-related fleet and building destruction.
|
|
|
|
*/
|
|
|
|
empres_owed DOUBLE PRECISION NOT NULL
|
|
|
|
DEFAULT 0
|
|
|
|
CHECK( empres_owed >= 0 ) ,
|
|
|
|
|
|
|
|
/* There is only one entry for each (empire,type of resource) pair */
|
|
|
|
PRIMARY KEY( empire_id , resource_name_id )
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE INDEX idx_empres_resource
|
|
|
|
ON emp.resources ( resource_name_id );
|
|
|
|
|
|
|
|
ALTER TABLE emp.resources
|
|
|
|
ADD CONSTRAINT fk_empres_empire
|
|
|
|
FOREIGN KEY ( empire_id ) REFERENCES emp.empires
|
|
|
|
ON DELETE CASCADE ,
|
|
|
|
ADD CONSTRAINT fk_empres_resource
|
|
|
|
FOREIGN KEY ( resource_name_id ) REFERENCES defs.resources;
|
|
|
|
|
|
|
|
|
2018-10-23 09:38:02 +02:00
|
|
|
--
|
|
|
|
-- Empire technologies
|
|
|
|
--
|
|
|
|
|
|
|
|
CREATE TABLE emp.technologies(
|
|
|
|
empire_id INT NOT NULL ,
|
|
|
|
line_id INT NOT NULL ,
|
|
|
|
level INT NOT NULL DEFAULT 1
|
|
|
|
CHECK( level > 0 ) ,
|
|
|
|
accumulated REAL NOT NULL DEFAULT 0
|
|
|
|
CHECK( accumulated >= 0 ),
|
|
|
|
PRIMARY KEY( empire_id , line_id )
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE INDEX idx_technologies_line
|
|
|
|
ON emp.technologies (line_id);
|
|
|
|
|
|
|
|
ALTER TABLE emp.technologies
|
|
|
|
ADD CONSTRAINT fk_technologies_empire
|
|
|
|
FOREIGN KEY (empire_id) REFERENCES emp.empires
|
|
|
|
ON DELETE CASCADE ,
|
|
|
|
ADD CONSTRAINT fk_technologies_line
|
|
|
|
FOREIGN KEY (line_id) REFERENCES tech.lines;
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Empire planets
|
|
|
|
--
|
|
|
|
|
|
|
|
CREATE TABLE emp.planets(
|
|
|
|
planet_id INT NOT NULL PRIMARY KEY ,
|
|
|
|
empire_id INT NOT NULL
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE INDEX idx_planets_empire
|
|
|
|
ON emp.planets (empire_id);
|
|
|
|
|
|
|
|
ALTER TABLE emp.planets
|
|
|
|
ADD CONSTRAINT fk_eplanets_planet
|
|
|
|
FOREIGN KEY (planet_id) REFERENCES verse.planets ,
|
|
|
|
ADD CONSTRAINT fk_eplanets_empire
|
|
|
|
FOREIGN KEY (empire_id) REFERENCES emp.empires
|
|
|
|
ON DELETE CASCADE;
|
|
|
|
|
|
|
|
|
2011-12-19 11:57:08 +01:00
|
|
|
/*
|
|
|
|
* Empire mining settings
|
|
|
|
* -----------------------
|
|
|
|
*
|
|
|
|
* This table is used to store general empire mining settings. When the empire
|
|
|
|
* gains control over a new planet, or if the planet does not have specific
|
|
|
|
* settings, these settings are used to determine the amount of work units
|
|
|
|
* that go into extracting each type of resource.
|
|
|
|
*
|
|
|
|
* Empire-wide settings are ignored if the planet has specific settings, or if
|
|
|
|
* none of the resources present on the planet have a positive weight (in
|
|
|
|
* which case all present resources are extracted as if they had the same
|
|
|
|
* weight).
|
|
|
|
*/
|
|
|
|
|
|
|
|
CREATE TABLE emp.mining_settings(
|
|
|
|
/* Identifier of the empire */
|
|
|
|
empire_id INT NOT NULL ,
|
|
|
|
|
|
|
|
/* Identifier of the type of resources */
|
|
|
|
resource_name_id INT NOT NULL ,
|
|
|
|
|
|
|
|
/* Weight to give to this type of resource when there are no planet-
|
2012-01-10 10:17:47 +01:00
|
|
|
* specific settings. The weight is a value between 0 (lowest priority)
|
|
|
|
* and 4 (highest priority)
|
2011-12-19 11:57:08 +01:00
|
|
|
*/
|
|
|
|
empmset_weight INT NOT NULL
|
2012-01-10 10:17:47 +01:00
|
|
|
DEFAULT 2
|
|
|
|
CHECK( empmset_weight BETWEEN 0 AND 4 ) ,
|
2011-12-19 11:57:08 +01:00
|
|
|
|
|
|
|
/* Primary key on (empire,resource type) pairs */
|
|
|
|
PRIMARY KEY( empire_id , resource_name_id )
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE INDEX idx_empmset_resource
|
|
|
|
ON emp.mining_settings ( resource_name_id );
|
|
|
|
|
|
|
|
ALTER TABLE emp.mining_settings
|
|
|
|
ADD CONSTRAINT fk_empmset_empire
|
|
|
|
FOREIGN KEY ( empire_id ) REFERENCES emp.empires
|
|
|
|
ON DELETE CASCADE ,
|
|
|
|
ADD CONSTRAINT fk_empmset_resource
|
|
|
|
FOREIGN KEY ( resource_name_id ) REFERENCES defs.natural_resources;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Planet-specific mining settings
|
|
|
|
* --------------------------------
|
|
|
|
*
|
|
|
|
* Empire may set planet-specific mining settings when they own a planet. Even
|
|
|
|
* once the empire abandons the planet (or when it is taken away), the
|
|
|
|
* settings are kept in the database and restored if the empire takes control
|
|
|
|
* over the planet again.
|
|
|
|
*/
|
|
|
|
|
|
|
|
CREATE TABLE emp.planet_mining_settings(
|
|
|
|
/* Identifier of the empire */
|
|
|
|
empire_id INT NOT NULL ,
|
|
|
|
|
|
|
|
/* The identifier of the planet */
|
|
|
|
planet_id INT NOT NULL ,
|
|
|
|
|
|
|
|
/* Identifier of the type of resources */
|
|
|
|
resource_name_id INT NOT NULL ,
|
|
|
|
|
2012-01-10 10:17:47 +01:00
|
|
|
/* Weight to give to this type of resource. Works in a manner similar to
|
|
|
|
* the empmset_weight column of emp.mining_settings.
|
|
|
|
*/
|
2011-12-19 11:57:08 +01:00
|
|
|
emppmset_weight INT NOT NULL
|
2012-01-10 10:17:47 +01:00
|
|
|
DEFAULT 2
|
|
|
|
CHECK( emppmset_weight BETWEEN 0 AND 4 ) ,
|
2011-12-19 11:57:08 +01:00
|
|
|
|
|
|
|
/* Primary key on (empire,resource type) pairs */
|
|
|
|
PRIMARY KEY( empire_id , planet_id , resource_name_id )
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE INDEX idx_emppmset_provider
|
|
|
|
ON emp.planet_mining_settings ( planet_id , resource_name_id );
|
|
|
|
|
|
|
|
ALTER TABLE emp.planet_mining_settings
|
|
|
|
ADD CONSTRAINT fk_emppmset_empire
|
|
|
|
FOREIGN KEY ( empire_id ) REFERENCES emp.empires
|
|
|
|
ON DELETE CASCADE ,
|
|
|
|
ADD CONSTRAINT fk_emppmset_resource
|
|
|
|
FOREIGN KEY ( planet_id , resource_name_id )
|
|
|
|
REFERENCES verse.resource_providers;
|
|
|
|
|
|
|
|
|
2018-10-23 09:38:02 +02:00
|
|
|
--
|
|
|
|
-- Planets being abandonned
|
|
|
|
--
|
|
|
|
|
|
|
|
CREATE TABLE emp.abandon(
|
|
|
|
planet_id INT NOT NULL PRIMARY KEY ,
|
|
|
|
time_left INT NOT NULL CHECK ( time_left > 0 )
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE INDEX idx_abandon_ready
|
|
|
|
ON emp.abandon ( ( time_left = 1 ) );
|
|
|
|
|
|
|
|
ALTER TABLE emp.abandon
|
|
|
|
ADD CONSTRAINT fk_abandon_planet
|
|
|
|
FOREIGN KEY (planet_id) REFERENCES emp.planets
|
|
|
|
ON DELETE CASCADE;
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Alliances
|
|
|
|
--
|
|
|
|
|
|
|
|
CREATE TABLE emp.alliances(
|
|
|
|
id SERIAL NOT NULL PRIMARY KEY ,
|
|
|
|
tag VARCHAR(5) NOT NULL ,
|
|
|
|
name VARCHAR(128) NOT NULL ,
|
|
|
|
leader_id INT NOT NULL
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE UNIQUE INDEX idx_alliances_tag
|
|
|
|
ON emp.alliances ( lower(tag) );
|
|
|
|
CREATE UNIQUE INDEX idx_alliances_leader
|
|
|
|
ON emp.alliances (leader_id);
|
|
|
|
|
|
|
|
ALTER TABLE emp.alliances
|
|
|
|
ADD CONSTRAINT fk_alliances_leader
|
|
|
|
FOREIGN KEY (leader_id) REFERENCES emp.empires
|
|
|
|
ON DELETE CASCADE;
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Alliance membership
|
|
|
|
--
|
|
|
|
|
|
|
|
CREATE TABLE emp.alliance_members(
|
|
|
|
empire_id INT NOT NULL PRIMARY KEY ,
|
|
|
|
alliance_id INT NOT NULL ,
|
|
|
|
is_pending BOOLEAN NOT NULL
|
|
|
|
DEFAULT TRUE
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE INDEX idx_alliancemembers_alliance
|
|
|
|
ON emp.alliance_members( alliance_id );
|
|
|
|
|
|
|
|
ALTER TABLE emp.alliance_members
|
|
|
|
ADD CONSTRAINT fk_alliancemembers_empire
|
|
|
|
FOREIGN KEY (empire_id) REFERENCES emp.empires
|
|
|
|
ON DELETE CASCADE ,
|
|
|
|
ADD CONSTRAINT fk_alliancemembers_alliance
|
|
|
|
FOREIGN KEY (alliance_id) REFERENCES emp.alliances
|
|
|
|
ON DELETE CASCADE;
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Enemy lists, alliances
|
|
|
|
--
|
|
|
|
|
|
|
|
CREATE TABLE emp.enemy_alliances(
|
|
|
|
empire_id INT NOT NULL ,
|
|
|
|
alliance_id INT NOT NULL ,
|
|
|
|
PRIMARY KEY (empire_id,alliance_id)
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE INDEX idx_enemyalliances_alliance
|
|
|
|
ON emp.enemy_alliances (alliance_id);
|
|
|
|
|
|
|
|
ALTER TABLE emp.enemy_alliances
|
|
|
|
ADD CONSTRAINT fk_enemyalliances_empire
|
|
|
|
FOREIGN KEY (empire_id) REFERENCES emp.empires
|
|
|
|
ON DELETE CASCADE ,
|
|
|
|
ADD CONSTRAINT fk_enemyalliances_alliance
|
|
|
|
FOREIGN KEY (alliance_id) REFERENCES emp.alliances
|
|
|
|
ON DELETE CASCADE;
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Enemy lists, empires
|
|
|
|
--
|
|
|
|
|
|
|
|
CREATE TABLE emp.enemy_empires(
|
|
|
|
empire_id INT NOT NULL ,
|
|
|
|
enemy_id INT NOT NULL ,
|
|
|
|
PRIMARY KEY (empire_id,enemy_id)
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE INDEX idx_enemyempires_enemy
|
|
|
|
ON emp.enemy_empires (enemy_id);
|
|
|
|
|
|
|
|
ALTER TABLE emp.enemy_empires
|
|
|
|
ADD CONSTRAINT fk_enemyempires_empire
|
|
|
|
FOREIGN KEY (empire_id) REFERENCES emp.empires
|
|
|
|
ON DELETE CASCADE ,
|
|
|
|
ADD CONSTRAINT fk_enemyempires_enemy
|
|
|
|
FOREIGN KEY (enemy_id) REFERENCES emp.empires
|
|
|
|
ON DELETE CASCADE;
|