blob: adaba15dcf93c5637dfcd6e82e2e7e65c1eb2744 (
plain)
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
|
/*
dedicated/dedicated.cc
This file is part of the Osirion project and is distributed under
the terms and conditions of the GNU General Public License version 2
*/
#include <iostream>
#include <iomanip>
#include "core/core.h"
#include "core/cvar.h"
#include "core/stats.h"
#include "dedicated/console.h"
#include "dedicated/dedicated.h"
namespace dedicated
{
void run(int count, char **arguments)
{
con_print << " command line ";
for (int i = 0; i < count; i++) {
con_print << arguments[i] << " ";
}
con_print << std::endl;
Dedicated app;
app.init(count, arguments);
app.run();
app.shutdown();
}
/* ---- class Dedicated -------------------------------------------- */
void Dedicated::init(int count, char **arguments)
{
Console::init();
con_print << "^BInitializing dedicated server..." << std::endl;
core::Cvar::set("sv_dedicated", "1", core::Cvar::ReadOnly);
core::Application::init(count, arguments);
// start logging
console()->open_log();
// the command line is in the buffer, execute it
core::CommandBuffer::exec();
std::string empty;
core::Application::connect(empty);
}
void Dedicated::run()
{
while (connected()) {
frame();
#ifdef HAVE_CURSES
console()->frame();
#endif
}
}
void Dedicated::shutdown()
{
con_print << "^BShutting down dedicated server..." << std::endl;
float ratio = 0;
if (core::Stats::network_uncompressed_bytes_sent > 0)
ratio = 100.0f - floorf((float)core::Stats::network_bytes_sent /
(float) core::Stats::network_uncompressed_bytes_sent * 100.0f);
int minutes = (int) floorf(time() / 60.0f);
int seconds = (int) floorf(time() - (float) minutes * 60.0f);
con_debug << "Statistics:" << std::endl;
con_debug << " uptime " << std::setfill(' ') << std::setw(3) << minutes << ":" << std::setfill('0') << std::setw(2) << seconds << std::endl;
con_debug << " bytes sent " << std::setfill(' ') << std::setw(6) << core::Stats::network_bytes_sent / 1024 << " KiB" << std::endl;
con_debug << " bytes received " << std::setw(6) << core::Stats::network_bytes_received / 1024 << " KiB" << std::endl;
con_debug << " compression " << std::setw(6) << ratio << " %" << std::endl;
core::Application::shutdown();
Console::shutdown();
quit(0);
}
void Dedicated::notify_message(const core::Message::Channel channel, const std::string &message)
{
con_print << message << std::endl;
}
void Dedicated::quit(int status)
{
core::Application::quit(status);
}
} // namespace server
|