summaryrefslogtreecommitdiff
path: root/server.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-09-21 22:16:31 +0200
committerTor Andersson <tor@ccxvii.net>2023-10-05 15:18:36 +0200
commit12a5afcf439e4879bab5a7bf5a92b6834a619c48 (patch)
tree02697e1cb870b94c9bdbccebbd637775f8763ec3 /server.js
parent6c5df51ed4d6cd0adbab53df277102738fccc70d (diff)
downloadserver-12a5afcf439e4879bab5a7bf5a92b6834a619c48.tar.gz
Add match making.
Diffstat (limited to 'server.js')
-rw-r--r--server.js286
1 files changed, 286 insertions, 0 deletions
diff --git a/server.js b/server.js
index 0fcaf43..4d3db19 100644
--- a/server.js
+++ b/server.js
@@ -96,6 +96,20 @@ function set_has(set, item) {
return false
}
+function array_remove(array, index) {
+ let n = array.length
+ for (let i = index + 1; i < n; ++i)
+ array[i - 1] = array[i]
+ array.length = n - 1
+}
+
+function array_remove_item(array, item) {
+ let n = array.length
+ for (let i = 0; i < n; ++i)
+ if (array[i] === item)
+ return array_remove(array, i)
+}
+
/*
* Notification mail setup.
*/
@@ -170,6 +184,7 @@ app.locals.SITE_URL = SITE_URL
app.locals.ENABLE_MAIL = !!mailer
app.locals.ENABLE_WEBHOOKS = !!WEBHOOKS
app.locals.ENABLE_FORUM = process.env.FORUM | 0
+app.locals.ENABLE_MATCHES = process.env.MATCHES | 0
app.locals.EMOJI_LIVE = "\u{1f465}"
app.locals.EMOJI_FAST = "\u{1f3c1}"
@@ -1961,6 +1976,277 @@ function update_elo_ratings(game_id) {
}
/*
+ * MATCHMAKING
+ */
+
+const MATCH_LIMIT = 300
+
+var _seed = random_seed()
+
+function random(range) {
+ // An MLCG using integer arithmetic with doubles.
+ // https://www.ams.org/journals/mcom/1999-68-225/S0025-5718-99-00996-5/S0025-5718-99-00996-5.pdf
+ // m = 2**35 − 31
+ return (_seed = _seed * 200105 % 34359738337) % range
+}
+
+function shuffle(list) {
+ // Fisher-Yates shuffle
+ for (let i = list.length - 1; i > 0; --i) {
+ let j = random(i + 1)
+ let tmp = list[j]
+ list[j] = list[i]
+ list[i] = tmp
+ }
+}
+
+const SQL_SELECT_TICKETS_FOR_PACE = SQL("select users.name, rating, setup_id, datetime(time) as time from ticket_rating_view join users using(user_id) where pace=? order by setup_id,time")
+
+const SQL_SELECT_MATCHMAKING = SQL("select setup_id, n, age from matchmaking_view where pace=?")
+const SQL_INSERT_MATCHMAKING_LOG = SQL("insert into matchmaking_log (setup_id,pace,age,score,tickets,matches) values (?,?,?,?,?,?)")
+
+const SQL_SELECT_TICKETS_FOR_USER = SQL("select tickets.* from tickets join setups using(setup_id) where user_id=? order by pace, title_id, setup_id")
+const SQL_SELECT_TICKETS_FOR_SETUP = SQL("select * from ticket_rating_view where setup_id=? and pace=? order by rating")
+const SQL_INSERT_TICKET = SQL("insert or replace into tickets (user_id, setup_id, pace, time) values (?,?,?,julianday())")
+const SQL_DELETE_TICKET = SQL("delete from tickets where user_id=? and ticket_id=?")
+const SQL_DELETE_TICKET_PACE = SQL("delete from tickets where user_id=? and pace=?")
+const SQL_DELETE_TICKET_USER = SQL("delete from tickets where user_id=?")
+
+const SQL_DELETE_TICKET_EXPIRE = SQL("delete from tickets where pace=? and time < julianday('now',?)")
+const SQL_INSERT_TICKET_EXPIRE_LOG = SQL(`
+ insert into expired_tickets_log
+ (user_id, setup_id, pace, ctime, xtime)
+ select
+ user_id, setup_id, pace, datetime(time), datetime()
+ from
+ tickets where pace=? and time < julianday('now',?)
+`)
+
+app.get('/games/match', must_be_logged_in, function (req, res) {
+ res.render('match.pug', {
+ user: req.user,
+ limit: check_join_game_limit(req.user),
+ tickets: SQL_SELECT_TICKETS_FOR_USER.all(req.user.user_id),
+ })
+})
+
+app.get('/admin/match', must_be_administrator, function (req, res) {
+ res.render('admin_match.pug', {
+ user: req.user,
+ live_tickets: SQL_SELECT_TICKETS_FOR_PACE.all(1),
+ fast_tickets: SQL_SELECT_TICKETS_FOR_PACE.all(2),
+ slow_tickets: SQL_SELECT_TICKETS_FOR_PACE.all(3),
+ })
+})
+
+app.post('/api/match/queue', must_be_logged_in, function (req, res) {
+ let pace = req.body.pace | 0
+ if (req.body.setups) {
+ if (typeof req.body.setups === "string")
+ SQL_INSERT_TICKET.run(req.user.user_id, req.body.setups|0, pace)
+ else
+ for (let setup of req.body.setups)
+ SQL_INSERT_TICKET.run(req.user.user_id, setup|0, pace)
+ }
+ res.redirect("/games/match")
+})
+
+app.post('/api/match/unqueue', must_be_logged_in, function (req, res) {
+ if (req.body.pace) {
+ SQL_DELETE_TICKET_PACE.run(req.user.user_id, req.body.pace|0)
+ }
+ if (req.body.tickets) {
+ if (typeof req.body.tickets === "string")
+ SQL_DELETE_TICKET.run(req.user.user_id, req.body.tickets|0)
+ else
+ for (let ticket of req.body.tickets)
+ SQL_DELETE_TICKET.run(req.user.user_id, ticket|0)
+ }
+ res.redirect("/games/match")
+})
+
+function tick_matches(pace, min_matches, max_age) {
+ for (let info of SQL_SELECT_MATCHMAKING.all(pace)) {
+ let setup = SETUP_TABLE[info.setup_id]
+ console.log("MATCH MAKING TICK (", pace, setup.setup_name, min_matches, max_age.toFixed(2), ") => ", info.n, info.age.toFixed(2))
+ if (info.n >= min_matches || info.age >= max_age)
+ create_matches(setup, pace, info.age)
+ }
+}
+
+function is_blacklist_match(m) {
+ for (let a of m)
+ for (let b of m)
+ if (a !== b && set_has(a.blacklist, b.user_id))
+ return true
+ return false
+}
+
+function score_ticket_pair(a, b) {
+ return Math.min(MATCH_LIMIT, Math.abs(a.rating - b.rating))
+}
+
+function score_ticket_pair_fast(a, b) {
+ let rd = Math.abs(a.rating - b.rating)
+ let td = Math.abs(a.time % 1 - b.time % 1)
+ if (td > 0.5)
+ td = 1 - td
+ // Ignore first 3 hour diff, then linearly approach limit at 9 hours
+ td = Math.max(0, td - 3/24) * (24/6) * MATCH_LIMIT
+ return Math.min(MATCH_LIMIT, (rd + td) | 0)
+}
+
+function score_match(F, m) {
+ if (is_blacklist_match(m))
+ return MATCH_LIMIT
+ if (m.length === 2)
+ return F(m[0], m[1])
+ let score = 0
+ let n = m.length
+ for (let a = 0; a < n; ++a)
+ for (let b = a+1; b < n; ++b)
+ score += F(m[a], m[b]) ** 2
+ return Math.sqrt(score / (n / 2 * (n-1))) | 0
+}
+
+function add_best_ticket(F, this_match, tickets) {
+ let best_score = MATCH_LIMIT
+ let best_ticket = tickets[0]
+ for (let t of tickets) {
+ this_match.push(t)
+ let this_score = score_match(F, this_match)
+ this_match.pop(t)
+ if (this_score < best_score) {
+ best_score = this_score
+ best_ticket = t
+ }
+ }
+ this_match.push(best_ticket)
+ array_remove_item(tickets, best_ticket)
+}
+
+function score_partition(F, partition) {
+ let score = 0
+ for (let m of partition)
+ score += score_match(F, m) ** 2
+ return Math.sqrt(score / partition.length)
+}
+
+function partition_matches(F, N, original_tickets, attempts) {
+ let M = (original_tickets.length / N) | 0
+
+ let best_partition = null
+ let best_score = (M * MATCH_LIMIT) ** 2
+
+ for (let i = 0; i < attempts; ++i) {
+ var this_partition = []
+
+ let tickets = original_tickets.slice()
+ if (i > 0)
+ shuffle(tickets)
+
+ while (tickets.length >= N) {
+ let this_match = [ tickets.pop() ]
+ while (this_match.length < N)
+ add_best_ticket(F, this_match, tickets)
+ this_partition.push(this_match)
+ }
+
+ let this_score = score_partition(F, this_partition)
+ if (this_score < best_score) {
+ best_score = this_score
+ best_partition = this_partition
+ }
+ }
+
+ if (best_partition) {
+ best_partition = best_partition.filter(m => score_match(F, m) < MATCH_LIMIT)
+ return { score: best_score, matches: best_partition }
+ }
+
+ return { score: MATCH_LIMIT, matches: [] }
+}
+
+function create_matches(setup, pace, age) {
+ let N = setup.player_count
+ let F = score_ticket_pair
+ let A = 47
+
+ let tickets = SQL_SELECT_TICKETS_FOR_SETUP.all(setup.setup_id, pace)
+ for (let t of tickets)
+ t.blacklist = SQL_SELECT_CONTACT_BLACKLIST.all(t.user_id)
+
+ if (tickets.length < N)
+ return
+
+ if (pace === PACE_FAST)
+ F = score_ticket_pair_fast
+
+ let info = partition_matches(F, N, tickets, A)
+ if (info.matches.length > 0) {
+ SQL_INSERT_MATCHMAKING_LOG.run(setup.setup_id, pace, age, info.score, JSON.stringify(tickets), JSON.stringify(info.matches))
+ for (let match of info.matches)
+ start_match(setup, pace, match)
+ }
+}
+
+function start_match(setup, pace, tickets) {
+ let game_id = 0
+ console.log("START MATCH", PACE_NAME[pace], setup.setup_name, tickets.map(t=>t.rating).join(","))
+ SQL_BEGIN.run()
+ try {
+ game_id = SQL_INSERT_GAME.get(
+ 0, setup.title_id, setup.scenario, setup.options, setup.player_count,
+ pace, 0, 1, null, 1
+ )
+ for (let i = 0; i < tickets.length; ++i) {
+ SQL_INSERT_PLAYER_ROLE.run(game_id, "Random " + (i+1), tickets[i].user_id, 0)
+
+ if (SQL_COUNT_ACTIVE_GAMES.get(tickets[i].user_id) + 1 >= LIMIT_ACTIVE_GAMES)
+ SQL_DELETE_TICKET_USER.run(tickets[i].user_id)
+ else if (pace === PACE_LIVE)
+ SQL_DELETE_TICKET_PACE.run(tickets[i].user_id, PACE_LIVE)
+ else
+ SQL_DELETE_TICKET.run(tickets[i].user_id, tickets[i].ticket_id)
+ }
+ SQL_COMMIT.run()
+ } finally {
+ if (db.inTransaction)
+ SQL_ROLLBACK.run()
+ }
+ start_game(SQL_SELECT_GAME.get(game_id))
+}
+
+function tick_slow_matches() {
+ tick_matches(PACE_SLOW, 3, 1)
+ SQL_INSERT_TICKET_EXPIRE_LOG.run(PACE_SLOW, "-14 days")
+ SQL_DELETE_TICKET_EXPIRE.run(PACE_SLOW, "-14 days")
+}
+
+function tick_fast_matches() {
+ // Wait at most one day.
+ tick_matches(PACE_FAST, 3, 1)
+ SQL_INSERT_TICKET_EXPIRE_LOG.run(PACE_FAST, "-7 days")
+ SQL_DELETE_TICKET_EXPIRE.run(PACE_FAST, "-7 days")
+}
+
+function tick_live_matches() {
+ // Wait at most 15 minutes
+ tick_matches(PACE_LIVE, 2, 0.25 / 24)
+ SQL_INSERT_TICKET_EXPIRE_LOG.run(PACE_LIVE, "-3 hours")
+ SQL_DELETE_TICKET_EXPIRE.run(PACE_LIVE, "-3 hours")
+}
+
+if (app.locals.ENABLE_MATCHES) {
+ setInterval(tick_live_matches, 1000 * 60)
+ setInterval(tick_fast_matches, 1000 * 60 * 5)
+ setInterval(tick_slow_matches, 1000 * 60 * 15)
+ setTimeout(tick_live_matches, 1000 * 10)
+ setTimeout(tick_fast_matches, 1000 * 20)
+ setTimeout(tick_slow_matches, 1000 * 30)
+}
+
+/*
* MAIL NOTIFICATIONS
*/