6 #include <Framework/ShapeHit.h>
7 #include <Framework/ShapeDraw.h>
28 Camera* Camera::active =
nullptr;
39 std::list<SubWindow*> SubWindow::windowS;
41 Renderer* Screen::activeRenderer =
nullptr;
44 Music* Music::active =
nullptr;
45 Music* Music::next =
nullptr;
47 bool Music::nextRestart;
49 bool Loading::isLoading =
false;
50 int Loading::loadingCount = 0;
51 int Loading::succesCount = 0;
52 std::mutex Loading::mtx;
53 std::vector<std::function<void(void)>> Loading::funcS;
57 double 角度差 = 角度A - 角度B;
58 角度差 = fmod(角度差,
PAI * 2);
80 a = (SDL_SetRenderTarget(handle,
nullptr) == 0);
84 a = (SDL_SetRenderTarget(handle, 描画対象->
GetHandle()) == 0);
static const Color Aqua
水 [RGB]0,255,255
Definition: Color.h:93
const double PAI
円周率
Definition: SDX.h:26
static const Color Red
赤 [RGB]255,0,0
Definition: Color.h:83
static const Color Maroon
栗 [RGB]128,0,0
Definition: Color.h:82
static const Color Yellow
黄 [[RGB]255,255,0
Definition: Color.h:89
static const Color Olive
暗黄 [RGB]128,128,0
Definition: Color.h:88
static const Color Blue
青 [RGB]0,0,255
Definition: Color.h:91
static const Color Silver
銀 [R]192,192,192
Definition: Color.h:79
static const Color Green
濃緑 [RGB]0,128,0
Definition: Color.h:86
static const Color White
白 [RGB]255,255,255
Definition: Color.h:81
画像データを表すクラス.
Definition: Image.h:17
static const Color Lime
明緑 [RGB]0,255,0
Definition: Color.h:87
SDL_Texture * GetHandle() const
ハンドルを取得.
Definition: Image.h:175
static const Color Gray
灰 [RGB]128,128,128
Definition: Color.h:80
static const Color Black
黒 [RGB]0,0,0
Definition: Color.h:78
bool SetTarget(Image *描画対象=nullptr)
描画先を変更.
Definition: SDXafx.h:74
static const Color Teal
青緑 [RGB]0,128,128
Definition: Color.h:92
static Renderer & mainRenderer
メインウィンドウのレンダラー
Definition: Renderer.h:48
static SubWindow mainWindow
現在アクティブなウィンドウ
Definition: SubWindow.h:43
static const Color Fuchsia
赤紫 [RGB]255,0,255
Definition: Color.h:85
double CompAngle(double 角度A, double 角度B)
Aから見たBの角度差を-PAI~+PAIで返す.
Definition: SDXafx.h:55
static const Color Purple
紫 [RGB]128,0,128
Definition: Color.h:84
static SubWindow * activeWindow
現在アクティブなウィンドウ
Definition: Window.h:24
static const Color Navy
濃青 [RGB]0,0,128
Definition: Color.h:90