私はGame State Systemを作ろうとしましたが、ウィンドウクラスを作って、私のGameStateでMainLoop関数を作っていましたが、最初はループがメインにないので、 。SDLウィンドウが開いた後に閉じます
Window.cpp:
#include "Window.h"
using namespace std;
Window::Window(char* title, int width, int height, Uint32 flags)
{
if (SDL_Init(SDL_INIT_EVERYTHING))
{
cerr << "SDL failed to init: " << SDL_GetError() << endl;
throw;
}
SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_BUFFER_SIZE, 32);
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
window = SDL_CreateWindow("DirtyCraft", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, width, height, flags);
if (window == NULL)
throw;
context = SDL_GL_CreateContext(window);
GLenum error = glewInit();
if (error != GLEW_OK)
{
cerr << "Glew: " << glewGetErrorString(error) << endl;
throw;
}
}
Window::~Window()
{
SDL_DestroyWindow(window);
SDL_Quit();
}
Window.h:
#pragma once
#include <iostream>
#include <SDL.h>
#define GLEW_STATIC
#include <GL/glew.h>
class Window
{
public:
Window(char* title, int width, int height, Uint32 flags);
~Window();
SDL_Window *window;
SDL_GLContext context;
};
そしてmain.cppにループです:ワットだから、
#include <iostream>
#include <SDL.h>
#define GLEW_STATIC
#include <GL/glew.h>
#include "Window.h"
#include "MainGame.h"
using namespace std;
#define WIDTH 640
#define HEIGHT 480
int main(int argc, char* argv[])
{
Window window("DirtyCraft", WIDTH, HEIGHT, SDL_WINDOW_OPENGL | SDL_WINDOW_ALLOW_HIGHDPI);
//MainGame MainGame(window);
//MainGame.MainLoop();
while (true)
{
SDL_Event E;
if (SDL_PollEvent(&E))
{
if (E.type == SDL_QUIT);
break;
}
glClear(GL_COLOR_BUFFER_BIT);
glClearColor(0.15f, 0.5f, 0.5f, 1.0f);
SDL_GL_SwapWindow(window.window);
}
window.~Window();
return 0;
}
ここに問題がありますか?私は、私が間違っている詳細があると確信しています...
あなたは明示的に 'Window'デストラクタを呼び出すべきではありません、それを変更する必要があります。 –
あなたの問題については、少し詳しく教えてもらえますか?警告なく大丈夫ですか?プログラムを実行するとどうなりますか?デバッガでコードをステップ実行すれば、それはあなたが期待することすべてをしますか? –