| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- /*
- * Copyright (c) 2012-2015 Daniele Bartolini and individual contributors.
- * License: https://github.com/taylor001/crown/blob/master/LICENSE
- */
- #include "config.h"
- #include "debug_line.h"
- #include "device.h"
- #include "log.h"
- #include "lua_environment.h"
- #include "lua_system.h"
- #include "material_manager.h"
- #include "resource_manager.h"
- #include "resource_package.h"
- #include "types.h"
- #include "world.h"
- #include "memory.h"
- #include "os.h"
- #define MAX_SUBSYSTEMS_HEAP 8 * 1024 * 1024
- namespace crown
- {
- Device::Device(const ConfigSettings& cs, Filesystem& fs)
- : _allocator(default_allocator(), MAX_SUBSYSTEMS_HEAP)
- , _width(0)
- , _height(0)
- , _is_init(false)
- , _is_running(false)
- , _is_paused(false)
- , _frame_count(0)
- , _last_time(0)
- , _current_time(0)
- , _last_delta_time(0.0f)
- , _time_since_start(0.0)
- , _cs(cs)
- , _fs(fs)
- , _boot_package_id(cs.boot_package)
- , _boot_script_id(cs.boot_script)
- , _boot_package(NULL)
- , _lua_environment(NULL)
- , _resource_manager(NULL)
- , _worlds(default_allocator())
- {
- }
- void Device::init()
- {
- // Initialize
- CE_LOGI("Initializing Crown Engine %s...", version());
- // Create resource manager
- CE_LOGD("Creating resource manager...");
- _resource_manager = CE_NEW(_allocator, ResourceManager)(_fs);
- CE_LOGD("Creating material manager...");
- material_manager::init();
- debug_line::init();
- _lua_environment = CE_NEW(_allocator, LuaEnvironment)(lua_globals::state());
- CE_LOGD("Crown Engine initialized.");
- CE_LOGD("Initializing Game...");
- _is_init = true;
- _is_running = true;
- _last_time = os::clocktime();
- _boot_package = create_resource_package(_boot_package_id);
- _boot_package->load();
- _boot_package->flush();
- _lua_environment->execute((LuaResource*)_resource_manager->get(LUA_TYPE, _boot_script_id));
- _lua_environment->call_global("init", 0);
- }
- void Device::shutdown()
- {
- CE_ASSERT(_is_init, "Engine is not initialized");
- // Shutdowns the game
- _lua_environment->call_global("shutdown", 0);
- _boot_package->unload();
- destroy_resource_package(_boot_package);
- CE_DELETE(_allocator, _lua_environment);
- CE_LOGD("Releasing material manager...");
- debug_line::shutdown();
- material_manager::shutdown();
- CE_LOGD("Releasing resource manager...");
- CE_DELETE(_allocator, _resource_manager);
- _allocator.clear();
- _is_init = false;
- }
- ResourceManager* Device::resource_manager()
- {
- return _resource_manager;
- }
- LuaEnvironment* Device::lua_environment()
- {
- return _lua_environment;
- }
- void Device::quit()
- {
- _is_running = false;
- }
- void Device::pause()
- {
- _is_paused = true;
- CE_LOGI("Engine paused.");
- }
- void Device::unpause()
- {
- _is_paused = false;
- CE_LOGI("Engine unpaused.");
- }
- bool Device::is_running() const
- {
- return _is_running;
- }
- uint64_t Device::frame_count() const
- {
- return _frame_count;
- }
- float Device::last_delta_time() const
- {
- return _last_delta_time;
- }
- double Device::time_since_start() const
- {
- return _time_since_start;
- }
- void Device::update()
- {
- _current_time = os::clocktime();
- const int64_t time = _current_time - _last_time;
- _last_time = _current_time;
- const double freq = (double) os::clockfrequency();
- _last_delta_time = time * (1.0 / freq);
- _time_since_start += _last_delta_time;
- if (!_is_paused)
- {
- _resource_manager->complete_requests();
- _lua_environment->call_global("update", 1, ARGUMENT_FLOAT, last_delta_time());
- _lua_environment->call_global("render", 1, ARGUMENT_FLOAT, last_delta_time());
- }
- _frame_count++;
- }
- void Device::render_world(World* world, Camera* camera)
- {
- world->render(camera);
- }
- World* Device::create_world()
- {
- World* w = CE_NEW(default_allocator(), World)(*_resource_manager, *_lua_environment);
- array::push_back(_worlds, w);
- return w;
- }
- void Device::destroy_world(World& w)
- {
- for (uint32_t i = 0, n = array::size(_worlds); i < n; ++i)
- {
- if (&w == _worlds[i])
- {
- CE_DELETE(default_allocator(), &w);
- _worlds[i] = _worlds[n - 1];
- array::pop_back(_worlds);
- return;
- }
- }
- CE_ASSERT(false, "Bad world");
- }
- ResourcePackage* Device::create_resource_package(const char* name)
- {
- ResourceId resid("package", name);
- return create_resource_package((StringId64) resid.name);
- }
- ResourcePackage* Device::create_resource_package(StringId64 id)
- {
- return CE_NEW(default_allocator(), ResourcePackage)(id, *_resource_manager);
- }
- void Device::destroy_resource_package(ResourcePackage* package)
- {
- CE_DELETE(default_allocator(), package);
- }
- void Device::reload(const char* , const char* )
- {
- }
- namespace device_globals
- {
- char _buffer[sizeof(Device)];
- Device* _device = NULL;
- void init(const ConfigSettings& cs, Filesystem& fs)
- {
- CE_ASSERT(_device == NULL, "Crown already initialized");
- _device = new (_buffer) Device(cs, fs);
- }
- void shutdown()
- {
- _device->~Device();
- _device = NULL;
- }
- } // namespace device_globals
- Device* device()
- {
- return device_globals::_device;
- }
- } // namespace crown
|