1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
use std::{
    cmp::Ordering,
    collections::{HashMap, HashSet},
    time::Duration,
};

use actionable::{Permissions, Statement};
use bonsaidb::{
    core::{
        api::Infallible,
        async_trait::async_trait,
        connection::AsyncStorageConnection,
        document::CollectionDocument,
        permissions::bonsai::{BonsaiAction, ServerAction},
        schema::SerializedCollection,
    },
    local::{config::Builder, StorageNonBlocking},
    server::{
        api::{Handler, HandlerError, HandlerSession},
        cli::Command,
        Backend, BackendError, ConnectedClient, ConnectionHandling, CustomServer,
        ServerConfiguration, ServerDatabase,
    },
};
use clap::Parser;
use minority_game_shared::{
    Choice, ChoiceSet, RoundComplete, RoundPending, SetChoice, SetTell, Welcome,
};
use rand::{thread_rng, Rng};
use tokio::time::Instant;

use crate::{
    schema::{GameSchema, Player},
    webserver::WebServer,
};

mod schema;
mod webserver;

const DATABASE_NAME: &str = "minority-game";
const SECONDS_PER_ROUND: u32 = 5;
const TOO_BUSY_HAPPINESS_MULTIPLIER: f32 = 0.8;
const HAD_FUN_HAPPINESS_MULTIPLIER: f32 = 1.5;
const STAYED_IN_MULTIPLIER: f32 = 0.2;

#[tokio::main]
#[cfg_attr(not(debug_assertions), allow(unused_mut))]
async fn main() -> anyhow::Result<()> {
    let command = Command::<Game>::parse();

    let server = CustomServer::<Game>::open(
        ServerConfiguration::new("minority-game.bonsaidb")
            .server_name("minority-game.gooey.rs")
            .default_permissions(Permissions::from(
                Statement::for_any().allowing(&BonsaiAction::Server(ServerAction::Connect)),
            )),
    )
    .await?;

    match command {
        Command::Certificate(cert_command) => {
            let is_installing_self_signed = matches!(
                cert_command,
                bonsaidb::server::cli::certificate::Command::InstallSelfSigned { .. }
            );
            cert_command.execute(&server).await?;
            if is_installing_self_signed {
                if let Ok(chain) = server.certificate_chain().await {
                    tokio::fs::write(
                        server.path().join("public-certificate.der"),
                        &chain.end_entity_certificate(),
                    )
                    .await?;
                }
            }
        }
        Command::Serve(mut serve_command) => {
            #[cfg(debug_assertions)]
            if serve_command.http_port.is_none() {
                use std::net::{Ipv6Addr, SocketAddr, SocketAddrV6};

                serve_command.http_port = Some(SocketAddr::V6(SocketAddrV6::new(
                    Ipv6Addr::UNSPECIFIED,
                    8080,
                    0,
                    0,
                )));
                serve_command.https_port = Some(SocketAddr::V6(SocketAddrV6::new(
                    Ipv6Addr::UNSPECIFIED,
                    8081,
                    0,
                    0,
                )));
            }

            serve_command
                .execute_with(&server, WebServer::new(server.clone()).await)
                .await?
        }
        Command::Storage(storage) => storage.execute_on_async(&server).await?,
    }
    Ok(())
}

#[derive(Debug)]
enum Game {}

#[async_trait]
impl Backend for Game {
    type Error = Infallible;
    type ClientData = CollectionDocument<Player>;

    fn configure(
        config: ServerConfiguration<Self>,
    ) -> Result<ServerConfiguration<Self>, BackendError<Infallible>> {
        Ok(config
            .with_schema::<GameSchema>()?
            .with_api::<ApiHandler, SetChoice>()?
            .with_api::<ApiHandler, SetTell>()?)
    }

    async fn initialize(server: &CustomServer<Self>) -> Result<(), BackendError<Infallible>> {
        server
            .create_database::<GameSchema>(DATABASE_NAME, true)
            .await?;

        tokio::spawn(game_loop(server.clone()));
        Ok(())
    }

    async fn client_connected(
        client: &ConnectedClient<Self>,
        server: &CustomServer<Self>,
    ) -> Result<ConnectionHandling, BackendError<Infallible>> {
        log::info!(
            "{:?} client connected from {:?}",
            client.transport(),
            client.address()
        );

        let player = Player::default()
            .push_into_async(&server.game_database().await?)
            .await?;

        drop(client.send::<Welcome>(
            None,
            &Welcome {
                player_id: player.header.id,
                happiness: player.contents.stats.happiness,
            },
        ));

        client.set_client_data(player).await;

        Ok(ConnectionHandling::Accept)
    }
}

#[derive(Debug)]
enum ApiHandler {}

#[actionable::async_trait]
impl Handler<Game, SetChoice> for ApiHandler {
    async fn handle(
        session: HandlerSession<'_, Game>,
        api: SetChoice,
    ) -> Result<ChoiceSet, HandlerError<Infallible>> {
        let SetChoice(choice) = api;
        let db = session.server.game_database().await?;

        let mut player = session.client.client_data().await;
        let player = player
            .as_mut()
            .expect("all connected clients should have a player record");

        player.contents.choice = Some(choice);
        player.update_async(&db).await?;

        Ok(ChoiceSet(choice))
    }
}

#[actionable::async_trait]
impl Handler<Game, SetTell> for ApiHandler {
    async fn handle(
        session: HandlerSession<'_, Game>,
        api: SetTell,
    ) -> Result<ChoiceSet, HandlerError<Infallible>> {
        let SetTell(tell) = api;
        let db = session.server.game_database().await?;

        let mut player = session.client.client_data().await;
        let player = player
            .as_mut()
            .expect("all connected clients should have a player record");

        player.contents.tell = Some(tell);
        player.update_async(&db).await?;

        Ok(ChoiceSet(tell))
    }
}

#[async_trait]
trait CustomServerExt {
    async fn game_database(&self) -> Result<ServerDatabase<Game>, bonsaidb::core::Error>;
}

#[async_trait]
impl CustomServerExt for CustomServer<Game> {
    async fn game_database(&self) -> Result<ServerDatabase<Game>, bonsaidb::core::Error> {
        self.database::<GameSchema>(DATABASE_NAME).await
    }
}

async fn game_loop(server: CustomServer<Game>) -> Result<(), bonsaidb::server::Error> {
    let mut last_iteration = Instant::now();
    let mut state = GameState::Idle;
    let db = server.game_database().await?;
    loop {
        last_iteration += Duration::from_secs(1);
        tokio::time::sleep_until(last_iteration).await;

        let clients = server.connected_clients().await;

        state = match state {
            GameState::Idle => send_status_update(&clients, None).await?,
            GameState::Pending {
                mut seconds_remaining,
            } => {
                if seconds_remaining > 0 {
                    seconds_remaining -= 1;
                    send_status_update(&clients, Some(seconds_remaining)).await?
                } else {
                    play_game(&db, &clients).await?
                }
            }
        };
    }
}

async fn send_status_update(
    clients: &[ConnectedClient<Game>],
    seconds_remaining: Option<u32>,
) -> Result<GameState, bonsaidb::server::Error> {
    let (mut players, clients_by_player_id) = collect_players(clients).await?;
    if players.is_empty() {
        return Ok(GameState::Idle);
    }

    sort_players(&mut players[..]);

    let (tells_going_out, number_of_tells) = players
        .iter()
        .map(|player| match player.contents.tell {
            Some(Choice::GoOut) => (1, 1),
            Some(Choice::StayIn) => (0, 1),
            None => (0, 0),
        })
        .fold((0, 0), |acc, player| (acc.0 + player.0, acc.1 + player.1));

    let seconds_remaining = seconds_remaining.unwrap_or(SECONDS_PER_ROUND);

    for (index, player) in players.iter().enumerate() {
        let client = &clients_by_player_id[&player.header.id];
        drop(client.send::<RoundPending>(
            None,
            &RoundPending {
                seconds_remaining,
                number_of_players: players.len() as u32,
                current_rank: index as u32 + 1,
                tells_going_out,
                number_of_tells,
            },
        ));
    }

    Ok(GameState::Pending { seconds_remaining })
}

async fn play_game(
    db: &ServerDatabase<Game>,
    clients: &[ConnectedClient<Game>],
) -> Result<GameState, bonsaidb::server::Error> {
    let (mut players, clients_by_player_id) = collect_players(clients).await?;
    if players.is_empty() {
        return Ok(GameState::Idle);
    }

    let mut going_out_player_ids = HashSet::new();
    let mut going_out = 0_u32;
    let mut staying_in = 0_u32;
    for player in &players {
        match player.contents.choice.unwrap() {
            Choice::GoOut => {
                going_out_player_ids.insert(player.header.id);
                going_out += 1;
            }
            Choice::StayIn => {
                staying_in += 1;
            }
        }
    }

    {
        let mut rng = thread_rng();
        while going_out + staying_in < 3 {
            if rng.gen_bool(0.5) {
                going_out += 1;
            } else {
                staying_in += 1;
            }
        }
    }

    let (number_of_liars, number_of_tells) = players
        .iter()
        .map(|player| {
            if player.contents.tell.is_some() && player.contents.choice != player.contents.tell {
                (1, 1)
            } else {
                (0, if player.contents.tell.is_some() { 1 } else { 0 })
            }
        })
        .fold((0, 0), |acc, player| (acc.0 + player.0, acc.1 + player.1));

    let had_fun = going_out <= staying_in;
    for player in &mut players {
        match player.contents.choice.take().unwrap() {
            Choice::GoOut => {
                player.contents.stats.times_went_out += 1;
                if had_fun {
                    player.contents.stats.happiness =
                        (player.contents.stats.happiness * HAD_FUN_HAPPINESS_MULTIPLIER).min(1.);
                } else {
                    player.contents.stats.happiness *= TOO_BUSY_HAPPINESS_MULTIPLIER;
                }
            }
            Choice::StayIn => {
                player.contents.stats.times_stayed_in += 1;
                player.contents.stats.happiness = (player.contents.stats.happiness
                    + (0.5 - player.contents.stats.happiness) * STAYED_IN_MULTIPLIER)
                    .min(1.);
            }
        }

        player.contents.tell = None;
        player.update_async(db).await?;
    }

    sort_players(&mut players);

    let number_of_players = players.len() as u32;
    for (index, player) in players.into_iter().enumerate() {
        let client = &clients_by_player_id[&player.header.id];
        let won = if going_out_player_ids.contains(&player.header.id) {
            had_fun
        } else {
            player.contents.stats.happiness < 0.5
        };
        drop(client.send::<RoundComplete>(
            None,
            &RoundComplete {
                won,
                happiness: player.contents.stats.happiness,
                current_rank: index as u32 + 1,
                number_of_players,
                number_of_tells,
                number_of_liars,
            },
        ));
        client.set_client_data(player).await;
    }

    Ok(GameState::Idle)
}

enum GameState {
    Idle,
    Pending { seconds_remaining: u32 },
}

async fn collect_players(
    clients: &[ConnectedClient<Game>],
) -> Result<
    (
        Vec<CollectionDocument<Player>>,
        HashMap<u64, ConnectedClient<Game>>,
    ),
    bonsaidb::server::Error,
> {
    let mut players = Vec::new();
    let mut clients_by_player_id = HashMap::new();

    for client in clients {
        let mut player = client.client_data().await;
        if let Some(player) = player.as_mut() {
            clients_by_player_id.insert(player.header.id, client.clone());
            if player.contents.choice.is_some() {
                players.push(player.clone());
            }
        }
    }

    Ok((players, clients_by_player_id))
}

fn sort_players(players: &mut [CollectionDocument<Player>]) {
    players.sort_by(|a, b| {
        assert!(!a.contents.stats.happiness.is_nan() && !b.contents.stats.happiness.is_nan());
        if approx::relative_eq!(a.contents.stats.happiness, b.contents.stats.happiness) {
            Ordering::Equal
        } else if a.contents.stats.happiness < b.contents.stats.happiness {
            Ordering::Less
        } else {
            Ordering::Greater
        }
    });
}