1.2.0: Refined all 6D calcs and UI/UX Experiences.
This commit is contained in:
Binary file not shown.
@@ -195,6 +195,13 @@ CREATE TABLE IF NOT EXISTS fact_match_players (
|
||||
flash_assists INTEGER,
|
||||
flash_duration REAL,
|
||||
jump_count INTEGER,
|
||||
|
||||
-- Utility Usage Stats (Parsed from round details)
|
||||
util_flash_usage INTEGER DEFAULT 0,
|
||||
util_smoke_usage INTEGER DEFAULT 0,
|
||||
util_molotov_usage INTEGER DEFAULT 0,
|
||||
util_he_usage INTEGER DEFAULT 0,
|
||||
util_decoy_usage INTEGER DEFAULT 0,
|
||||
damage_total INTEGER,
|
||||
damage_received INTEGER,
|
||||
damage_receive INTEGER,
|
||||
@@ -365,6 +372,14 @@ CREATE TABLE IF NOT EXISTS fact_match_players_t (
|
||||
year TEXT,
|
||||
sts_raw TEXT,
|
||||
level_info_raw TEXT,
|
||||
|
||||
-- Utility Usage Stats (Parsed from round details)
|
||||
util_flash_usage INTEGER DEFAULT 0,
|
||||
util_smoke_usage INTEGER DEFAULT 0,
|
||||
util_molotov_usage INTEGER DEFAULT 0,
|
||||
util_he_usage INTEGER DEFAULT 0,
|
||||
util_decoy_usage INTEGER DEFAULT 0,
|
||||
|
||||
PRIMARY KEY (match_id, steam_id_64),
|
||||
FOREIGN KEY (match_id) REFERENCES fact_matches(match_id) ON DELETE CASCADE
|
||||
);
|
||||
@@ -466,6 +481,14 @@ CREATE TABLE IF NOT EXISTS fact_match_players_ct (
|
||||
year TEXT,
|
||||
sts_raw TEXT,
|
||||
level_info_raw TEXT,
|
||||
|
||||
-- Utility Usage Stats (Parsed from round details)
|
||||
util_flash_usage INTEGER DEFAULT 0,
|
||||
util_smoke_usage INTEGER DEFAULT 0,
|
||||
util_molotov_usage INTEGER DEFAULT 0,
|
||||
util_he_usage INTEGER DEFAULT 0,
|
||||
util_decoy_usage INTEGER DEFAULT 0,
|
||||
|
||||
PRIMARY KEY (match_id, steam_id_64),
|
||||
FOREIGN KEY (match_id) REFERENCES fact_matches(match_id) ON DELETE CASCADE
|
||||
);
|
||||
|
||||
Binary file not shown.
@@ -100,7 +100,17 @@ CREATE TABLE IF NOT EXISTS dm_player_features (
|
||||
util_avg_flash_time REAL,
|
||||
util_avg_flash_enemy REAL,
|
||||
util_avg_flash_team REAL,
|
||||
util_usage_rate REAL
|
||||
util_usage_rate REAL,
|
||||
|
||||
-- ==========================================
|
||||
-- 7. Scores (0-100)
|
||||
-- ==========================================
|
||||
score_bat REAL,
|
||||
score_sta REAL,
|
||||
score_hps REAL,
|
||||
score_ptl REAL,
|
||||
score_tct REAL,
|
||||
score_util REAL
|
||||
);
|
||||
|
||||
-- Optional: Detailed per-match feature table for time-series analysis
|
||||
|
||||
Reference in New Issue
Block a user