1.2.2: Profile Upgraded

This commit is contained in:
2026-01-27 00:57:35 +08:00
parent 1b9cab5628
commit b9c1af5d70
17 changed files with 655 additions and 186 deletions

Binary file not shown.

0
database/L2/L2.db Normal file
View File

Binary file not shown.

Binary file not shown.

View File

@@ -33,7 +33,7 @@
2. 对位最低Rating对手的KD差自身击杀-被该对手击杀)
3. 对位所有对手的胜率(自身击杀>被击杀的对手占比)
4. 平均对枪成功率(对所有对手的对枪成功率求平均)
5. 与单个对手的交火次数(相遇频率)
* ~~A. 对枪反应时间(遇敌到开火平均时长,需录像解析)~~ (Phase 5)
* B. 近/中/远距对枪占比及各自胜率 (仅 Classic 可行)

View File

@@ -52,7 +52,7 @@ CREATE TABLE IF NOT EXISTS dm_player_features (
-- ==========================================
bat_kd_diff_high_elo REAL,
bat_kd_diff_low_elo REAL,
bat_win_rate_vs_all REAL,
-- bat_win_rate_vs_all REAL, -- Removed
bat_avg_duel_win_rate REAL,
bat_avg_duel_freq REAL,
-- Distance based stats (Placeholder for Classic data)
@@ -87,13 +87,29 @@ CREATE TABLE IF NOT EXISTS dm_player_features (
-- ==========================================
-- 5. T/CT: Side Preference
-- ==========================================
side_rating_ct REAL,
side_rating_ct REAL, -- Currently calculated as K/D
side_rating_t REAL,
side_kd_ct REAL, -- Explicit K/D
side_kd_t REAL,
side_win_rate_ct REAL, -- Round Win %
side_win_rate_t REAL,
side_first_kill_rate_ct REAL,
side_first_kill_rate_t REAL,
side_hold_success_rate_ct REAL,
side_entry_success_rate_t REAL,
side_kd_diff_ct_t REAL, -- CT KD - T KD
-- New Side Comparisons
side_kast_ct REAL,
side_kast_t REAL,
side_rws_ct REAL,
side_rws_t REAL,
side_first_death_rate_ct REAL,
side_first_death_rate_t REAL,
side_multikill_rate_ct REAL,
side_multikill_rate_t REAL,
side_headshot_rate_ct REAL,
side_headshot_rate_t REAL,
side_defuses_ct REAL,
side_plants_t REAL,
side_planted_bomb_count INTEGER,
side_defused_bomb_count INTEGER,

Binary file not shown.