|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- //
- // Lol Engine
- //
- // Copyright: (c) 2010-2012 Sam Hocevar <sam@hocevar.net>
- // This program is free software; you can redistribute it and/or
- // modify it under the terms of the Do What The Fuck You Want To
- // Public License, Version 2, as published by Sam Hocevar. See
- // http://sam.zoy.org/projects/COPYING.WTFPL for more details.
- //
-
- #if defined HAVE_CONFIG_H
- # include "config.h"
- #endif
-
- #include <cstring>
- #include <cstdlib>
- #include <ctype.h>
-
- #include "core.h"
-
- namespace lol
- {
-
- /*
- * World implementation class
- */
-
- class WorldData
- {
- friend class World;
-
- private:
- int width, height;
- };
-
- /*
- * Public World class
- */
-
- World::World()
- : data(new WorldData())
- {
- data->width = 0;
- data->height = 0;
-
- m_drawgroup = DRAWGROUP_BEFORE;
- }
-
- World::~World()
- {
- delete data;
- }
-
- char const *World::GetName()
- {
- return "<world>";
- }
-
- void World::TickGame(float seconds)
- {
- Entity::TickGame(seconds);
- }
-
- void World::TickDraw(float seconds)
- {
- Entity::TickDraw(seconds);
- }
-
- int World::GetWidth()
- {
- return data->width * 32;
- }
-
- int World::GetHeight()
- {
- return data->height * 32;
- }
-
- } /* namespace lol */
-
|