2012-03-18 23:06:08 -05:00
|
|
|
/*
|
2012-05-21 23:27:44 -05:00
|
|
|
Niotso - The New Implementation of The Sims Online
|
|
|
|
EngineInterface.hpp
|
|
|
|
Copyright (c) 2012 Niotso Project <http://niotso.org/>
|
|
|
|
Author(s): Fatbag <X-Fi6@phppoll.org>
|
2012-03-18 23:06:08 -05:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-04-13 22:55:13 -05:00
|
|
|
//Compiler/platform constants
|
2012-06-28 07:00:45 -05:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define WINVER 0x0502
|
|
|
|
#define _WIN32_WINNT 0x0502
|
|
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
|
|
#endif
|
2012-03-18 23:06:08 -05:00
|
|
|
|
2012-04-13 22:55:13 -05:00
|
|
|
//Standard libraries
|
|
|
|
#include <stdint.h>
|
2012-05-21 23:27:44 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2012-04-13 22:55:13 -05:00
|
|
|
#include <stdio.h>
|
2012-06-28 07:00:45 -05:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
|
|
#undef NULL
|
|
|
|
#define NULL 0
|
|
|
|
#endif
|
2012-03-18 23:06:08 -05:00
|
|
|
|
2012-04-13 22:55:13 -05:00
|
|
|
//Codebase libraries
|
2012-04-08 12:20:25 -05:00
|
|
|
#include "FileHandler.hpp"
|
2012-04-09 23:58:16 -05:00
|
|
|
#include "ft2build.h"
|
|
|
|
#include FT_FREETYPE_H
|
|
|
|
|
2012-04-13 22:55:13 -05:00
|
|
|
//Macro definitions
|
2012-04-09 23:58:16 -05:00
|
|
|
#ifndef min
|
|
|
|
#define min(x,y) ((x)<(y)?(x):(y))
|
|
|
|
#endif
|
|
|
|
#ifndef max
|
|
|
|
#define max(x,y) ((x)>(y)?(x):(y))
|
|
|
|
#endif
|
2012-03-18 23:06:08 -05:00
|
|
|
|
2012-04-13 22:55:13 -05:00
|
|
|
//Codebase version, branding, linker resources
|
2012-04-08 12:20:25 -05:00
|
|
|
#include "version.h"
|
|
|
|
#include "Resources/Resource.h"
|
|
|
|
|
2012-04-13 22:55:13 -05:00
|
|
|
//Components
|
2012-04-08 12:20:25 -05:00
|
|
|
#include "Audio/Audio.hpp"
|
|
|
|
#include "Graphics/Graphics.hpp"
|
2012-04-13 22:55:13 -05:00
|
|
|
#include "System/System.hpp"
|
|
|
|
#include "Window/Window.hpp"
|
|
|
|
|
2012-04-08 12:20:25 -05:00
|
|
|
#include "Scene/Scene.hpp"
|