2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* os_server.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 22:01:57 +01:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2017-04-08 00:11:42 +02:00
|
|
|
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2016-10-03 21:33:42 +02:00
|
|
|
//#include "servers/visual/visual_server_raster.h"
|
|
|
|
//#include "servers/visual/rasterizer_dummy.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "os_server.h"
|
|
|
|
#include "print_string.h"
|
|
|
|
#include "servers/physics/physics_server_sw.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
#include "main/main.h"
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
int OS_Server::get_video_driver_count() const {
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2017-03-05 16:44:50 +01:00
|
|
|
const char *OS_Server::get_video_driver_name(int p_driver) const {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
return "Dummy";
|
|
|
|
}
|
|
|
|
OS::VideoMode OS_Server::get_default_video_mode() const {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
return OS::VideoMode(800, 600, false);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void OS_Server::initialize(const VideoMode &p_desired, int p_video_driver, int p_audio_driver) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
args = OS::get_singleton()->get_cmdline_args();
|
|
|
|
current_videomode = p_desired;
|
|
|
|
main_loop = NULL;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
//rasterizer = memnew( RasterizerDummy );
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
//visual_server = memnew( VisualServerRaster(rasterizer) );
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-15 20:06:14 +01:00
|
|
|
AudioDriverManager::get_driver(p_audio_driver)->set_singleton();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (AudioDriverManager::get_driver(p_audio_driver)->init() != OK) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
ERR_PRINT("Initializing audio failed.");
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
sample_manager = memnew(SampleManagerMallocSW);
|
|
|
|
audio_server = memnew(AudioServerSW(sample_manager));
|
2014-02-10 02:10:30 +01:00
|
|
|
audio_server->init();
|
2017-03-05 16:44:50 +01:00
|
|
|
spatial_sound_server = memnew(SpatialSoundServerSW);
|
2014-02-10 02:10:30 +01:00
|
|
|
spatial_sound_server->init();
|
2017-03-05 16:44:50 +01:00
|
|
|
spatial_sound_2d_server = memnew(SpatialSound2DServerSW);
|
2014-02-10 02:10:30 +01:00
|
|
|
spatial_sound_2d_server->init();
|
|
|
|
|
|
|
|
ERR_FAIL_COND(!visual_server);
|
|
|
|
|
|
|
|
visual_server->init();
|
|
|
|
//
|
2017-03-05 16:44:50 +01:00
|
|
|
physics_server = memnew(PhysicsServerSW);
|
2014-02-10 02:10:30 +01:00
|
|
|
physics_server->init();
|
2017-03-05 16:44:50 +01:00
|
|
|
physics_2d_server = memnew(Physics2DServerSW);
|
2014-02-10 02:10:30 +01:00
|
|
|
physics_2d_server->init();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
input = memnew(InputDefault);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
_ensure_data_dir();
|
|
|
|
}
|
|
|
|
void OS_Server::finalize() {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (main_loop)
|
2014-02-10 02:10:30 +01:00
|
|
|
memdelete(main_loop);
|
2017-03-05 16:44:50 +01:00
|
|
|
main_loop = NULL;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
spatial_sound_server->finish();
|
|
|
|
memdelete(spatial_sound_server);
|
|
|
|
spatial_sound_2d_server->finish();
|
|
|
|
memdelete(spatial_sound_2d_server);
|
|
|
|
|
2017-01-14 12:26:56 +01:00
|
|
|
/*
|
|
|
|
if (debugger_connection_console) {
|
|
|
|
memdelete(debugger_connection_console);
|
|
|
|
}
|
|
|
|
*/
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-10-31 09:59:29 +01:00
|
|
|
memdelete(sample_manager);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
audio_server->finish();
|
|
|
|
memdelete(audio_server);
|
|
|
|
|
|
|
|
visual_server->finish();
|
|
|
|
memdelete(visual_server);
|
2016-10-03 21:33:42 +02:00
|
|
|
//memdelete(rasterizer);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
physics_server->finish();
|
|
|
|
memdelete(physics_server);
|
|
|
|
|
|
|
|
physics_2d_server->finish();
|
|
|
|
memdelete(physics_2d_server);
|
|
|
|
|
|
|
|
memdelete(input);
|
|
|
|
|
|
|
|
args.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Server::set_mouse_show(bool p_show) {
|
|
|
|
}
|
|
|
|
void OS_Server::set_mouse_grab(bool p_grab) {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
grab = p_grab;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
bool OS_Server::is_mouse_grab_enabled() const {
|
|
|
|
|
|
|
|
return grab;
|
|
|
|
}
|
|
|
|
|
|
|
|
int OS_Server::get_mouse_button_state() const {
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-03-29 17:29:38 +02:00
|
|
|
Point2 OS_Server::get_mouse_position() const {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
return Point2();
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void OS_Server::set_window_title(const String &p_title) {
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void OS_Server::set_video_mode(const VideoMode &p_video_mode, int p_screen) {
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
OS::VideoMode OS_Server::get_video_mode(int p_screen) const {
|
|
|
|
|
|
|
|
return current_videomode;
|
|
|
|
}
|
2015-04-02 17:59:23 +02:00
|
|
|
|
|
|
|
Size2 OS_Server::get_window_size() const {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
return Vector2(current_videomode.width, current_videomode.height);
|
2015-04-02 17:59:23 +02:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void OS_Server::get_fullscreen_mode_list(List<VideoMode> *p_list, int p_screen) const {
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
MainLoop *OS_Server::get_main_loop() const {
|
|
|
|
|
|
|
|
return main_loop;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Server::delete_main_loop() {
|
|
|
|
|
|
|
|
if (main_loop)
|
|
|
|
memdelete(main_loop);
|
2017-03-05 16:44:50 +01:00
|
|
|
main_loop = NULL;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void OS_Server::set_main_loop(MainLoop *p_main_loop) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
main_loop = p_main_loop;
|
2014-02-10 02:10:30 +01:00
|
|
|
input->set_main_loop(p_main_loop);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OS_Server::can_draw() const {
|
|
|
|
|
|
|
|
return false; //can never draw
|
|
|
|
};
|
|
|
|
|
|
|
|
String OS_Server::get_name() {
|
|
|
|
|
|
|
|
return "Server";
|
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Server::move_window_to_foreground() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Server::set_cursor_shape(CursorShape p_shape) {
|
|
|
|
}
|
|
|
|
|
2016-07-23 13:15:55 +02:00
|
|
|
PowerState OS_Server::get_power_state() {
|
|
|
|
return power_manager->get_power_state();
|
|
|
|
}
|
|
|
|
|
|
|
|
int OS_Server::get_power_seconds_left() {
|
|
|
|
return power_manager->get_power_seconds_left();
|
|
|
|
}
|
|
|
|
|
|
|
|
int OS_Server::get_power_percent_left() {
|
|
|
|
return power_manager->get_power_percent_left();
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void OS_Server::run() {
|
|
|
|
|
|
|
|
force_quit = false;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (!main_loop)
|
|
|
|
return;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
main_loop->init();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
while (!force_quit) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
if (Main::iteration() == true)
|
2014-02-10 02:10:30 +01:00
|
|
|
break;
|
|
|
|
};
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
main_loop->finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
OS_Server::OS_Server() {
|
|
|
|
|
2017-01-15 20:06:14 +01:00
|
|
|
AudioDriverManager::add_driver(&driver_dummy);
|
2014-02-10 02:10:30 +01:00
|
|
|
//adriver here
|
2017-03-05 16:44:50 +01:00
|
|
|
grab = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|