SpaceCadetPinball/SpaceCadetPinball/pch.h

73 lines
1.8 KiB
C
Raw Normal View History

2020-10-04 08:28:38 +02:00
// Tips for Getting Started:
// 1. Use the Solution Explorer window to add/manage files
// 2. Use the Team Explorer window to connect to source control
// 3. Use the Output window to see build output and other messages
// 4. Use the Error List window to view errors
// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
#ifndef PCH_H
#define PCH_H
// GCC does not have *_s functions
#define _CRT_SECURE_NO_WARNINGS
2020-10-04 08:28:38 +02:00
// TODO: add headers that you want to pre-compile here
2020-10-18 17:08:41 +02:00
#include <cstdio>
2020-10-25 15:17:26 +01:00
#include <cassert>
#include <cmath>
#include <cstdint>
2021-01-22 10:53:16 +01:00
#include <type_traits> /*For control template*/
#include <chrono>
#include <iostream>
//#include <iomanip>
//#include <cstdlib>
#include <vector>
#include <algorithm>
#include <cstring>
#include <string>
#include <thread>
2020-10-18 17:08:41 +02:00
#define SDL_MAIN_HANDLED
#include "SDL.h"
#include <SDL_mixer.h>
//https://github.com/ocornut/imgui 7b913db1ce9dd2fd98e5790aa59974dd4496be3b
#include "imgui.h"
#include "imgui_internal.h"
#include "imgui_impl_sdl.h"
//https://github.com/Tyyppi77/imgui_sdl 01deb04b102b6a1c15c7fdec1977a2c96a885e6f
#include "imgui_sdl.h"
typedef uint32_t DWORD;
typedef char* LPSTR;
typedef const char* LPCSTR;
constexpr char PathSeparator =
#ifdef _WIN32
'\\';
#else
'/';
#endif
2021-01-23 17:28:29 +01:00
/*Use (void) to silent unused warnings.*/
2020-11-05 16:44:34 +01:00
#define assertm(exp, msg) assert(((void)msg, exp))
2020-10-04 08:28:38 +02:00
inline size_t pgm_save(int width, int height, char* data, FILE* outfile)
{
size_t n = 0;
n += fprintf(outfile, "P5\n%d %d\n%d\n", width, height, 0xFF);
n += fwrite(data, 1, width * height, outfile);
return n;
}
inline float RandFloat()
{
return static_cast<float>(std::rand() / static_cast<double>(RAND_MAX));
}
2020-10-04 08:28:38 +02:00
#endif //PCH_H