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
/*
* This file is part of laurelin/server
* Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
*
* Licensed under GPL-3.0-only.
* See LICENSE for licensing information.
*/
use std::{collections::HashMap, time::Duration};
use bevy_app::{App, ScheduleRunnerPlugin, ScheduleRunnerSettings};
use bevy_core::{FrameCountPlugin, TaskPoolPlugin, TypeRegistrationPlugin};
use bevy_ecs::{schedule::IntoSystemConfigs, system::Resource};
use bevy_log::{info, LogPlugin};
use naia_bevy_server::{Plugin as ServerPlugin, ReceiveEvents, ServerConfig, UserKey};
use laurelin_shared::server::protocol::protocol;
mod systems;
#[derive(Resource)]
pub struct Config {
pub api_address: String,
}
/// Temporary runtime data
#[derive(Resource)]
pub struct RuntimeTemp {
pub afterauth_details: HashMap<UserKey, (String, String)>,
}
#[derive(Resource)]
pub struct Global {}
fn main() {
let mut server = App::new();
let api_address = std::env::var("LAURELIN_API_URL").expect("LAURELIN_API_URL");
server
// plugins
.add_plugin(TaskPoolPlugin::default())
.add_plugin(TypeRegistrationPlugin::default())
.add_plugin(FrameCountPlugin::default())
.insert_resource(ScheduleRunnerSettings::run_loop(Duration::from_millis(3)))
.add_plugin(ScheduleRunnerPlugin::default())
.add_plugin(LogPlugin {
// NOTE: overridden by RUST_LOG environment variable
level: bevy_log::Level::INFO,
..Default::default()
})
.add_plugin(ServerPlugin::new(ServerConfig::default(), protocol()))
// config
.insert_resource(Config { api_address })
// temp runtime data
.insert_resource(RuntimeTemp {
afterauth_details: HashMap::new(),
})
// init system
.add_startup_system(systems::init::init)
// events
.add_systems(
(
systems::event::auth_events,
systems::event::connect_events,
systems::event::disconnect_events,
systems::event::error_events,
systems::event::tick_events,
)
.chain()
.in_set(ReceiveEvents),
);
info!("Laurelin server starting");
server.run();
}