mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
Moving files, make things easy.
This commit is contained in:
parent
7e8c6f7c1e
commit
a09c723a98
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
class AudioPlayer
|
||||
{
|
||||
public:
|
||||
|
@ -17,4 +17,4 @@ private:
|
|||
static _Audio* _sysAudio;
|
||||
static int _sysAudioCounter;
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,5 +1,6 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
|
||||
enum class BlendMode
|
||||
{
|
||||
None,
|
||||
|
@ -7,4 +8,5 @@ enum class BlendMode
|
|||
Add,
|
||||
Mod
|
||||
};
|
||||
#include "end_code.h"
|
||||
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,6 +1,8 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include "begin_code.h"
|
||||
|
||||
namespace MiniEngine {
|
||||
|
||||
class ColorMode
|
||||
{
|
||||
public:
|
||||
|
@ -8,4 +10,5 @@ public:
|
|||
ColorMode(int R, int G, int B);
|
||||
ColorMode();
|
||||
};
|
||||
#include "end_code.h"
|
||||
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,10 +1,12 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include "_SystemCursorType.h"
|
||||
#include "SystemCursorType.h"
|
||||
#include "Point.h"
|
||||
#include "Surface.h"
|
||||
#include "__Plugin.h"
|
||||
#include "begin_code.h"
|
||||
|
||||
namespace MiniEngine {
|
||||
|
||||
class Cursor
|
||||
{
|
||||
public:
|
||||
|
@ -30,4 +32,5 @@ private:
|
|||
|
||||
friend class _internal::Plugin;
|
||||
};
|
||||
#include "end_code.h"
|
||||
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,7 +1,9 @@
|
|||
#pragma once
|
||||
#include <exception>
|
||||
#include <string>
|
||||
#include "begin_code.h"
|
||||
|
||||
namespace MiniEngine {
|
||||
|
||||
class ErrorViewer : public std::exception
|
||||
{
|
||||
public:
|
||||
|
@ -11,4 +13,5 @@ public:
|
|||
private:
|
||||
std::string str;
|
||||
};
|
||||
#include "end_code.h"
|
||||
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,9 +1,12 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
|
||||
namespace MiniEngine {
|
||||
|
||||
enum class FlipMode
|
||||
{
|
||||
None,
|
||||
Horizontal,
|
||||
Vertical
|
||||
};
|
||||
#include "end_code.h"
|
||||
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,14 +1,14 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include "_FontStyle.h"
|
||||
#include "_FontHint.h"
|
||||
#include "FontStyle.h"
|
||||
#include "FontHint.h"
|
||||
#include "Rect.h"
|
||||
#include "Surface.h"
|
||||
#include "Texture.h"
|
||||
#include "Renderer.h"
|
||||
#include <vector>
|
||||
#include "__Plugin.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
class Font
|
||||
{
|
||||
public:
|
||||
|
@ -122,4 +122,4 @@ private:
|
|||
|
||||
friend class _internal::Plugin;
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,5 +1,6 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
|
||||
enum class FontHint
|
||||
{
|
||||
Normal,
|
||||
|
@ -8,4 +9,5 @@ enum class FontHint
|
|||
None,
|
||||
Error
|
||||
};
|
||||
#include "end_code.h"
|
||||
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,5 +1,6 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
|
||||
enum class FontStyle
|
||||
{
|
||||
Normal,
|
||||
|
@ -8,4 +9,5 @@ enum class FontStyle
|
|||
UnderLine,
|
||||
StrikeThrough
|
||||
};
|
||||
#include "end_code.h"
|
||||
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
enum class IMGInitFlag
|
||||
{
|
||||
JPG,
|
||||
|
@ -8,4 +8,4 @@ enum class IMGInitFlag
|
|||
WEBP,
|
||||
ALL
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
class LogSystem
|
||||
{
|
||||
static void v(const char* fmt,...);/// Verbose
|
||||
|
@ -10,4 +10,4 @@ class LogSystem
|
|||
static void e(const char* fmt,...);/// Error
|
||||
static void critical(const char* fmt,...);/// Critical
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,10 +1,10 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include "_MessageBoxType.h"
|
||||
#include "MessageBoxType.h"
|
||||
#include <string>
|
||||
#include <functional>
|
||||
#include <vector>
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
class WindowMessageBoxButton
|
||||
{
|
||||
public:
|
||||
|
@ -42,4 +42,4 @@ public:
|
|||
private:
|
||||
std::vector<WindowMessageBoxButton> _vec;
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,9 +1,9 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
enum class MessageBoxType
|
||||
{
|
||||
Error,
|
||||
Warning,
|
||||
Information
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
enum class MixInitFlag
|
||||
{
|
||||
FLAC,
|
||||
|
@ -9,4 +9,4 @@ enum class MixInitFlag
|
|||
OGG,
|
||||
FLUIDSYNTH
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -5,10 +5,10 @@
|
|||
#include "ErrorViewer.h"
|
||||
#include "Audio.h"
|
||||
#include "RWOP.h"
|
||||
#include "_MusicType.h"
|
||||
#include "MusicType.h"
|
||||
#include "__Noncopyable.h"
|
||||
#include "__Plugin.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
/// Forward Declaration
|
||||
class Music
|
||||
{
|
||||
|
@ -54,4 +54,4 @@ private:
|
|||
};
|
||||
|
||||
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,8 +1,8 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
enum class MusicType
|
||||
{
|
||||
None,CMD,WAV,MOD,MID,OGG,MP3,MP3MAD,FLAC,MODPLUG
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
enum class Platform
|
||||
{
|
||||
Unknown,
|
||||
|
@ -9,4 +9,4 @@ enum class Platform
|
|||
iOS,
|
||||
Android
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,7 +1,8 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include "Rect.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
|
||||
class Point
|
||||
{
|
||||
public:
|
||||
|
@ -11,4 +12,5 @@ public:
|
|||
SDL_Point toSDLPoint() const;
|
||||
bool inRect(const Rect& rect) const;
|
||||
};
|
||||
#include "end_code.h"
|
||||
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
enum class PowerState
|
||||
{
|
||||
Unknown,
|
||||
|
@ -8,4 +8,4 @@ enum class PowerState
|
|||
Charging,
|
||||
Charged
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,7 +1,8 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include "ColorMode.h"
|
||||
#include "begin_code.h"
|
||||
|
||||
namespace MiniEngine {
|
||||
|
||||
class RGBA
|
||||
{
|
||||
|
@ -14,4 +15,4 @@ public:
|
|||
ColorMode toColorMode() const;
|
||||
};
|
||||
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -4,7 +4,9 @@
|
|||
#include <string>
|
||||
#include <memory>
|
||||
#include "__Plugin.h"
|
||||
#include "begin_code.h"
|
||||
|
||||
namespace MiniEngine {
|
||||
|
||||
class RWOP
|
||||
{
|
||||
public:
|
||||
|
@ -28,4 +30,5 @@ private:
|
|||
|
||||
friend class _internal::Plugin;
|
||||
};
|
||||
#include "end_code.h"
|
||||
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
|
||||
class Rect
|
||||
{
|
||||
|
@ -18,4 +18,4 @@ public:
|
|||
Rect getUnion(const Rect&) const;
|
||||
};
|
||||
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,13 +1,13 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include "_RendererType.h"
|
||||
#include "_FlipMode.h"
|
||||
#include "RendererType.h"
|
||||
#include "FlipMode.h"
|
||||
#include "Window.h"
|
||||
#include "Surface.h"
|
||||
#include "Texture.h"
|
||||
#include "__Plugin.h"
|
||||
#include <initializer_list>
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
class Renderer
|
||||
{
|
||||
public:
|
||||
|
@ -149,4 +149,4 @@ private:
|
|||
|
||||
friend class _internal::Plugin;
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,5 +1,6 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
|
||||
enum class RendererType
|
||||
{
|
||||
Software,
|
||||
|
@ -7,4 +8,5 @@ enum class RendererType
|
|||
PresentSync,
|
||||
TargetTexture
|
||||
};
|
||||
#include "end_code.h"
|
||||
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
enum class SDLInitFlag
|
||||
{
|
||||
Timer,
|
||||
|
@ -11,4 +11,4 @@ enum class SDLInitFlag
|
|||
Events,
|
||||
All
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,16 +1,16 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include "_PowerState.h"
|
||||
#include "_Platform.h"
|
||||
#include "_SDLInitFlag.h"
|
||||
#include "_IMGInitFlag.h"
|
||||
#include "_MixInitFlag.h"
|
||||
#include "PowerState.h"
|
||||
#include "Platform.h"
|
||||
#include "SDLInitFlag.h"
|
||||
#include "IMGInitFlag.h"
|
||||
#include "MixInitFlag.h"
|
||||
#include "__Noncopyable.h"
|
||||
#include "__Nonmoveable.h"
|
||||
#include "ErrorViewer.h"
|
||||
#include <tuple>
|
||||
#include <string>
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
|
||||
class SDLSystem : public NonCopyable, public NonMoveable
|
||||
{
|
||||
|
@ -73,4 +73,4 @@ private:
|
|||
void _init(Uint32,Uint32,Uint32,bool);
|
||||
void _quit();
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -3,7 +3,7 @@
|
|||
#include <string>
|
||||
#include <memory>
|
||||
#include <functional>
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
class SharedLibrary
|
||||
{
|
||||
public:
|
||||
|
@ -27,4 +27,4 @@ private:
|
|||
void _clear();
|
||||
std::shared_ptr<void> _obj;
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -6,7 +6,7 @@
|
|||
#include "ErrorViewer.h"
|
||||
#include "RWOP.h"
|
||||
#include "__Plugin.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
class Sound
|
||||
{
|
||||
public:
|
||||
|
@ -67,4 +67,4 @@ public:
|
|||
Channel playSound(Sound sound, int loops);
|
||||
Channel fadeIn(Sound sound, int loops, int ms);
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,12 +1,14 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include "_BlendMode.h"
|
||||
#include "BlendMode.h"
|
||||
#include "RGBA.h"
|
||||
#include "Point.h"
|
||||
#include "RWOP.h"
|
||||
#include "ErrorViewer.h"
|
||||
#include "__Plugin.h"
|
||||
#include "begin_code.h"
|
||||
|
||||
namespace MiniEngine {
|
||||
|
||||
class Surface
|
||||
{
|
||||
public:
|
||||
|
@ -86,4 +88,4 @@ private:
|
|||
friend class _internal::Plugin;
|
||||
};
|
||||
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,5 +1,6 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
|
||||
enum class SystemCursorType
|
||||
{
|
||||
Arrow, Ibeam, CrossHair,
|
||||
|
@ -7,4 +8,5 @@ enum class SystemCursorType
|
|||
SizeNWSE, SizeNESW, SizeWE, SizeNS, SizeAll,
|
||||
No, Hand
|
||||
};
|
||||
#include "end_code.h"
|
||||
|
||||
} /// End of namespace MiniEngine
|
|
@ -3,10 +3,11 @@
|
|||
#include "Rect.h"
|
||||
#include "RGBA.h"
|
||||
#include "ColorMode.h"
|
||||
#include "_BlendMode.h"
|
||||
#include "BlendMode.h"
|
||||
#include "__Plugin.h"
|
||||
#include <memory>
|
||||
#include "begin_code.h"
|
||||
|
||||
namespace MiniEngine {
|
||||
|
||||
class Texture
|
||||
{
|
||||
|
@ -45,4 +46,4 @@ private:
|
|||
friend class _internal::Plugin;
|
||||
};
|
||||
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include <functional>
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
Uint32 _global_timer_executor(Uint32 interval,void* param);
|
||||
|
||||
class Timer
|
||||
|
@ -48,4 +48,4 @@ private:
|
|||
/// Reserved Variable For Template variable Parameter
|
||||
bool _delete_on_disable;
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,12 +1,12 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include "_WindowType.h"
|
||||
#include "_MessageBoxType.h"
|
||||
#include "WindowType.h"
|
||||
#include "MessageBoxType.h"
|
||||
#include "ErrorViewer.h"
|
||||
#include "MessageBox.h"
|
||||
#include "Surface.h"
|
||||
#include "__Plugin.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
class Window
|
||||
{
|
||||
public:
|
||||
|
@ -65,4 +65,4 @@ private:
|
|||
friend class Renderer;
|
||||
friend class _internal::Plugin;
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
enum class WindowType
|
||||
{
|
||||
FullScreen, OpenGL, Shown, Hidden,
|
||||
|
@ -9,4 +9,4 @@ enum class WindowType
|
|||
MouseCapture, AlwaysOnTop, SkipTaskBar,
|
||||
Utility, ToolTip, PopUpMenu
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
class NonCopyable
|
||||
{
|
||||
protected:
|
||||
|
@ -8,4 +8,4 @@ protected:
|
|||
NonCopyable(const NonCopyable&) = delete;
|
||||
NonCopyable& operator = (const NonCopyable&) = delete;
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
class NonMoveable
|
||||
{
|
||||
public:
|
||||
|
@ -8,4 +8,4 @@ public:
|
|||
NonMoveable(NonMoveable&&) =delete;
|
||||
NonMoveable& operator = (NonMoveable&&)=delete;
|
||||
};
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,5 +1,7 @@
|
|||
#pragma once
|
||||
#include "begin_code.h"
|
||||
|
||||
namespace MiniEngine {
|
||||
|
||||
namespace _internal
|
||||
{
|
||||
|
||||
|
@ -33,4 +35,5 @@ public:
|
|||
};
|
||||
|
||||
}
|
||||
#include "end_code.h"
|
||||
|
||||
} /// End of namespace MiniEngine
|
|
@ -1,11 +1,11 @@
|
|||
#pragma once
|
||||
|
||||
/// Include SDL Library Headers.
|
||||
#include <SDL2/SDL.h>
|
||||
#include "SDL2/SDL.h"
|
||||
#undef main
|
||||
#include <SDL2/SDL_image.h>
|
||||
#include <SDL2/SDL_ttf.h>
|
||||
#include <SDL2/SDL_mixer.h>
|
||||
#include "SDL2/SDL_image.h"
|
||||
#include "SDL2/SDL_ttf.h"
|
||||
#include "SDL2/SDL_mixer.h"
|
||||
|
||||
/// Version Requiring Definition
|
||||
#define _MINIENGINE_SDL_VERSION_ATLEAST(X,Y,Z) SDL_VERSION_ATLEAST(X,Y,Z)
|
|
@ -1,5 +1,5 @@
|
|||
#include "Audio.h"
|
||||
#include "begin_code.h"
|
||||
#include "SDLWrapper/Audio.h"
|
||||
namespace MiniEngine {
|
||||
AudioPlayer::AudioPlayer()
|
||||
{
|
||||
if (!_sysAudioCounter)
|
||||
|
@ -30,4 +30,4 @@ AudioPlayer::_Audio::~_Audio()
|
|||
|
||||
AudioPlayer::_Audio* AudioPlayer::_sysAudio = nullptr;
|
||||
int AudioPlayer::_sysAudioCounter = 0;
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include "ColorMode.h"
|
||||
#include "begin_code.h"
|
||||
#include "SDLWrapper/ColorMode.h"
|
||||
namespace MiniEngine {
|
||||
ColorMode::ColorMode(int R, int G, int B)
|
||||
{
|
||||
r = R;
|
||||
|
@ -11,4 +11,4 @@ ColorMode::ColorMode()
|
|||
{
|
||||
r = g = b = 0;
|
||||
}
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "Cursor.h"
|
||||
#include "SDLWrapper/Cursor.h"
|
||||
#include "_caster.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
//private
|
||||
void Cursor::_set(SDL_Cursor* p)
|
||||
{
|
||||
|
@ -78,4 +78,4 @@ void Cursor::activate()
|
|||
SDL_SetCursor(_get());
|
||||
}
|
||||
}
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "ErrorViewer.h"
|
||||
#include "include.h"
|
||||
#include "begin_code.h"
|
||||
#include "SDLWrapper/ErrorViewer.h"
|
||||
#include "SDLWrapper/include.h"
|
||||
namespace MiniEngine {
|
||||
void ErrorViewer::fetch()
|
||||
{
|
||||
str = SDL_GetError();
|
||||
|
@ -15,4 +15,4 @@ const char * ErrorViewer::what() const noexcept
|
|||
{
|
||||
return str.c_str();
|
||||
}
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "Font.h"
|
||||
#include "SDLWrapper/Font.h"
|
||||
#include "_caster.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
// private
|
||||
void Font::_set(TTF_Font* p)
|
||||
{
|
||||
|
@ -399,4 +399,4 @@ void Font::release()
|
|||
{
|
||||
_clear();
|
||||
}
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include "Log.h"
|
||||
#include "begin_code.h"
|
||||
#include "SDLWrapper/Log.h"
|
||||
namespace MiniEngine {
|
||||
void LogSystem::d(const char* fmt,...)
|
||||
{
|
||||
va_list ap;
|
||||
|
@ -47,4 +47,4 @@ void LogSystem::critical(const char* fmt,...)
|
|||
SDL_LogMessageV(SDL_LOG_CATEGORY_APPLICATION,SDL_LOG_PRIORITY_CRITICAL,fmt,ap);
|
||||
va_end(ap);
|
||||
}
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include "MessageBox.h"
|
||||
#include "begin_code.h"
|
||||
#include "SDLWrapper/MessageBox.h"
|
||||
namespace MiniEngine {
|
||||
WindowMessageBoxButton::WindowMessageBoxButton()
|
||||
{
|
||||
_hitoption=0;
|
||||
|
@ -63,4 +63,4 @@ const WindowMessageBoxButton& WindowMessageBox::getButtonConst(int index) const
|
|||
{
|
||||
return _vec.at(index);
|
||||
}
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "Music.h"
|
||||
#include "SDLWrapper/Music.h"
|
||||
#include "_caster.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
//private
|
||||
void Music::_set(Mix_Music* p)
|
||||
{
|
||||
|
@ -126,4 +126,4 @@ int MusicPlayer::setPosition(double second)
|
|||
return Mix_SetMusicPosition(second);
|
||||
}
|
||||
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include "Point.h"
|
||||
#include "begin_code.h"
|
||||
#include "SDLWrapper/Point.h"
|
||||
namespace MiniEngine {
|
||||
|
||||
Point::Point(int X, int Y)
|
||||
{
|
||||
|
@ -27,4 +27,4 @@ bool Point::inRect(const Rect& rect) const
|
|||
return ( SDL_PointInRect(&p, &r) == SDL_TRUE );
|
||||
}
|
||||
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include "RGBA.h"
|
||||
#include "begin_code.h"
|
||||
#include "SDLWrapper/RGBA.h"
|
||||
namespace MiniEngine {
|
||||
RGBA::RGBA(int R, int G, int B, int A)
|
||||
{
|
||||
r = R;
|
||||
|
@ -35,4 +35,4 @@ ColorMode RGBA::toColorMode() const
|
|||
{
|
||||
return ColorMode(r, g, b);
|
||||
}
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include "RWOP.h"
|
||||
#include "begin_code.h"
|
||||
#include "SDLWrapper/RWOP.h"
|
||||
namespace MiniEngine {
|
||||
// private
|
||||
void RWOP::_set(SDL_RWops* p)
|
||||
{
|
||||
|
@ -45,4 +45,4 @@ void RWOP::release()
|
|||
{
|
||||
_clear();
|
||||
}
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "Rect.h"
|
||||
#include "SDLWrapper/Rect.h"
|
||||
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
|
||||
Rect::Rect(int X, int Y, int W, int H)
|
||||
{
|
||||
|
@ -69,4 +69,4 @@ Rect Rect::getUnion(const Rect& r) const
|
|||
return Rect(c);
|
||||
}
|
||||
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "Renderer.h"
|
||||
#include "SDLWrapper/Renderer.h"
|
||||
#include "_caster.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
|
||||
//private
|
||||
void Renderer::_set(SDL_Renderer* p)
|
||||
|
@ -516,4 +516,4 @@ int Renderer::GetDriversNum()
|
|||
return SDL_GetNumRenderDrivers();
|
||||
}
|
||||
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "SDLSystem.h"
|
||||
#include "SDLWrapper/SDLSystem.h"
|
||||
#include "_caster.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
// private
|
||||
void SDLSystem::_init(Uint32 sdl_flag, Uint32 img_flag, Uint32 mix_flag, bool init_ttf)
|
||||
{
|
||||
|
@ -300,4 +300,4 @@ bool SDLSystem::HasClipboardText()
|
|||
return SDL_HasClipboardText()==SDL_TRUE;
|
||||
}
|
||||
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include "SharedLibrary.h"
|
||||
#include "begin_code.h"
|
||||
#include "SDLWrapper/SharedLibrary.h"
|
||||
namespace MiniEngine {
|
||||
//private
|
||||
void* SharedLibrary::_get() const
|
||||
{
|
||||
|
@ -64,4 +64,4 @@ void SharedLibrary::release()
|
|||
{
|
||||
_clear();
|
||||
}
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include "Sound.h"
|
||||
#include "begin_code.h"
|
||||
#include "SDLWrapper/Sound.h"
|
||||
namespace MiniEngine {
|
||||
//private
|
||||
void Sound::_set(Mix_Chunk* p)
|
||||
{
|
||||
|
@ -170,4 +170,4 @@ Channel SoundPlayer::fadeIn(Sound sound, int loops, int ms)
|
|||
c.fadeIn(sound,loops,ms);
|
||||
return c;
|
||||
}
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "Surface.h"
|
||||
#include "SDLWrapper/Surface.h"
|
||||
#include "_caster.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
//private
|
||||
void Surface::_set(SDL_Surface* p)
|
||||
{
|
||||
|
@ -356,4 +356,4 @@ SDL_Surface* Surface::getRawPointer()
|
|||
{
|
||||
return _get();
|
||||
}
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "Texture.h"
|
||||
#include "SDLWrapper/Texture.h"
|
||||
#include "_caster.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
//private
|
||||
void Texture::_set(SDL_Texture* p)
|
||||
{
|
||||
|
@ -123,4 +123,4 @@ void Texture::release()
|
|||
{
|
||||
_clear();
|
||||
}
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include "Timer.h"
|
||||
#include "begin_code.h"
|
||||
#include "SDLWrapper/Timer.h"
|
||||
namespace MiniEngine {
|
||||
/// Global Executor For class Timer
|
||||
Uint32 _global_timer_executor(Uint32 interval,void* param)
|
||||
{
|
||||
|
@ -84,4 +84,4 @@ void Timer::_delete_delegator(std::function<Uint32(Uint32)>* param)
|
|||
{
|
||||
delete param;
|
||||
}
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "Window.h"
|
||||
#include "SDLWrapper/Window.h"
|
||||
#include "_caster.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
//private
|
||||
void Window::_set(SDL_Window* p)
|
||||
{
|
||||
|
@ -247,4 +247,4 @@ bool Window::isScreenKeyboardShown()
|
|||
{
|
||||
return SDL_IsScreenKeyboardShown(_get())==SDL_TRUE;
|
||||
}
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
#pragma once
|
||||
#include <experimental/optional>
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
template<typename T>
|
||||
using Optional = std::experimental::optional<T>;
|
||||
|
||||
using BadOptionalAccess = std::experimental::bad_optional_access;
|
||||
|
||||
constexpr std::experimental::nullopt_t NullOpt = std::experimental::nullopt;
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include "_caster.h"
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
namespace _internal
|
||||
{
|
||||
BlendMode getBlendModeFromSDLBlendMode(SDL_BlendMode mode)
|
||||
|
@ -342,4 +342,4 @@ Mix_MusicType getMixMusicTypeFromMusicType(MusicType type)
|
|||
|
||||
|
||||
}/// End of namespace _internal
|
||||
#include "end_code.h"
|
||||
} /// End of namespace MiniEngine
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
#pragma once
|
||||
#include "include.h"
|
||||
#include "_BlendMode.h"
|
||||
#include "_WindowType.h"
|
||||
#include "_SystemCursorType.h"
|
||||
#include "_FontStyle.h"
|
||||
#include "_FlipMode.h"
|
||||
#include "_SDLInitFlag.h"
|
||||
#include "_IMGInitFlag.h"
|
||||
#include "_MixInitFlag.h"
|
||||
#include "_MusicType.h"
|
||||
#include "SDLWrapper/include.h"
|
||||
#include "SDLWrapper/BlendMode.h"
|
||||
#include "SDLWrapper/WindowType.h"
|
||||
#include "SDLWrapper/SystemCursorType.h"
|
||||
#include "SDLWrapper/FontStyle.h"
|
||||
#include "SDLWrapper/FlipMode.h"
|
||||
#include "SDLWrapper/SDLInitFlag.h"
|
||||
#include "SDLWrapper/IMGInitFlag.h"
|
||||
#include "SDLWrapper/MixInitFlag.h"
|
||||
#include "SDLWrapper/MusicType.h"
|
||||
#include <vector>
|
||||
#include "begin_code.h"
|
||||
namespace MiniEngine {
|
||||
namespace _internal
|
||||
{
|
||||
BlendMode getBlendModeFromSDLBlendMode(SDL_BlendMode mode);
|
||||
|
@ -28,4 +28,4 @@ int getIntFromMixInitFlag(MixInitFlag flag);
|
|||
MusicType getMusicTypeFromMixMusicType(Mix_MusicType);
|
||||
Mix_MusicType getMixMusicTypeFromMusicType(MusicType);
|
||||
}/// End of namespace _internal
|
||||
#include "end_code.h"
|
||||
}/// End of namespace MiniEngine
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
/// Include this file at the beginning of MiniEngine headers and sources.
|
||||
namespace MiniEngine
|
||||
{
|
|
@ -1,3 +0,0 @@
|
|||
/// Include this file at the end of MiniEngine headers and sources.
|
||||
} /// End of namespace MiniEngine
|
||||
/// NOTICE: If you see an compile error here, there must be some unclosed "{" !
|
Loading…
Reference in New Issue
Block a user