- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在使用 SDL 开发一个相当大的应用程序,最近发现了一个奇怪的错误;每当一个窗口关闭时,另一个窗口上的所有内容都会呈现完全黑色。当我绘制红色线条时,它会变成黑色,而当我绘制 SDL_Texture 时,它会绘制一个黑色矩形来代替图像。
一段时间后,我通过从头开始制作该应用程序的简化版本,设法重现了该问题。该程序包括一个窗口类,它存储一个窗口、它的渲染器和一个 SDL_Texture。窗口类还包括一个渲染函数,用于将内容渲染到其窗口,包括 SDL_Texture。还有一个函数可以让每个窗口对象处理窗口被关闭等SDL事件。当窗口关闭时,窗口、渲染器和纹理都被销毁。
class Window {
SDL_Window *window;
SDL_Renderer *renderer;
Uint32 windowID;
SDL_Texture *texture;
void cleanup() {
SDL_DestroyWindow(window);
SDL_DestroyRenderer(renderer);
SDL_DestroyTexture(texture);
}
bool running = true;
public:
void init() {
window = SDL_CreateWindow("Window", 50, 50, 721, 558, SDL_WINDOW_SHOWN | SDL_WINDOW_RESIZABLE);
renderer = SDL_CreateRenderer(window, -1, SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC);
windowID = SDL_GetWindowID(window);
SDL_SetRenderDrawBlendMode(renderer, SDL_BLENDMODE_BLEND);
// load texture
SDL_Surface* loadedSurface = IMG_Load("picture.png");
texture = SDL_CreateTextureFromSurface(renderer, loadedSurface);
SDL_FreeSurface(loadedSurface);
}
bool isRunning() {
return running;
}
void render() {
// clear the screen with a green color
SDL_SetRenderDrawColor(renderer, 0x00, 0xFF, 0x00, 0xFF);
SDL_RenderClear(renderer);
// create a rectangle for drawing things
SDL_Rect rect = {0, 0, 100, 100};
// draw a red rectangle
SDL_SetRenderDrawColor(renderer, 0xFF, 0x00, 0x00, 0xFF);
SDL_RenderFillRect(renderer, &rect);
// draw the texture/image on top of the rectangle
if (SDL_RenderCopy(renderer, texture, NULL, &rect) < 0) {
printf("Unable to render texture! Error: %s\n", SDL_GetError());
}
SDL_RenderPresent(renderer);
}
void events(SDL_Event &e) {
if (e.window.windowID == windowID && e.window.event == SDL_WINDOWEVENT_CLOSE) {
running = false;
cleanup();
}
}
};
主要功能一次管理多个窗口,并分别为每个窗口提供 SDL 事件:
int main(int argc, const char * argv[]) {
if (SDL_Init(SDL_INIT_VIDEO) < 0) { // initialize SDL and IMG
printf("SDL could not initialize! Error: %s\n", SDL_GetError());
} else if (!(IMG_Init(IMG_INIT_PNG) & IMG_INIT_PNG)) {
printf("SDL_image could not initialize! Error: %s\n", IMG_GetError());
} else {
std::vector<Window*> windows; // vector of window objects
// add window objects to the vector
windows.push_back(new Window());
windows.push_back(new Window());
windows.push_back(new Window());
windows.push_back(new Window());
// initialize all windows
for (int i = 0; i < windows.size(); i++) {
windows[i]->init();
}
// game loop
bool loop = true;
while (loop) {
SDL_Delay(50); // delay between each frame
// render all windows
for (int i = 0; i < windows.size(); i++) {
windows[i]->render();
}
// handle new events
SDL_Event e;
while (SDL_PollEvent(&e)) {
// loop backward through windows
// in case one of them has to be
// removed from the vector
for (unsigned long i = windows.size(); i-- > 0;) {
if (windows[i]->isRunning()) {
windows[i]->events(e);
} else {
// delete a window if it has been closed
delete windows[i];
windows.erase(windows.begin() + i);
}
}
}
if (windows.empty()) { // if all windows are closed,
loop = false; // stop the loop
}
}
}
return 0;
}
既然我已经展示了我的代码,我将更详细地解释这个问题。程序启动时,会创建四个窗口对象,每个窗口都会显示在屏幕上。每个窗口都正确渲染,PNG 图像覆盖在红色矩形的顶部。第四个窗口,或最后一个要初始化的窗口,在任何其他窗口关闭后,只会呈现黑色的图像、矩形和线条等内容。唯一会以不同颜色呈现的是 SDL_RenderClear
,我在上面的代码中使用它来呈现绿色背景,从而暴露黑色图像和矩形形状。
我已经测试确保纹理、渲染器和窗口在出现此问题后仍然有效,并且没有错误。
我至少想找出导致问题的原因以及是否有任何可能的解决方案。
最佳答案
你不应该在渲染器还活着的时候销毁窗口。尝试以相反的顺序在 cleanup()
中执行方法。
void cleanup()
{
SDL_DestroyTexture(texture);
SDL_DestroyRenderer(renderer);
SDL_DestroyWindow(window);
}
关于c++ - SDL_Texture 导致一切呈现黑色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45229531/
我有以下函数可以从一个更大的纹理中提取一个 64x64 像素的纹理: SDL_Texture* cropTexture (SDL_Texture* src, int x, int y) { S
我一直在使用 SDL 开发一个相当大的应用程序,最近发现了一个奇怪的错误;每当一个窗口关闭时,另一个窗口上的所有内容都会呈现完全黑色。当我绘制红色线条时,它会变成黑色,而当我绘制 SDL_Textur
我在使用 SDL_Texture 时遇到了问题 角色扮演教程.cpp #include "stdafx.h" int main(int argc, char *argv[]) { bool q
如何更改 SDL_Texture 的不透明度?而且我不知道如何在我的函数中应用不透明度数。 我的代码 void drawTexture(SDL_Texture *img, int x, int
我想为我的小游戏做插值。有 2 个 SDL_Textures,当我点击第一个然后再点击第二个时,它们的位置被交换,但没有移动动画。那么如何为 SDL_Textures 制作动画位置交换? void M
一天前,我安装了一个 SDL2 库。它还没有在 Debian Wheezy 中,所以我使用了 configure, make, make install 命令。 毕竟,当我尝试使用 SDL_Textu
我的代码抛出访问错误。这是代码: SDL_Color *getPixelColor(SDL_Surface *loadingSurface, int x, int y) { SDL_Color
我正在编写一个基于 Tile 的游戏的原型(prototype)来学习 SDL。我的 map 只是一个 257x257 的 Tiles 阵列,每个 Tile 是 1x1 到 60x60 像素(不同的缩
我试图在两个单独的 SDL_Renderer* 上使用相同的 SDL_Texture*,但显然 SDL_Texture 似乎“绑定(bind)”到 SDL_Renderer*。 有没有办法让第二个渲染
给定一个由 unsigned char[] 表示的单 channel 位图(alpha 从 0 到 255),从中制作 SDL_Texture 的方法有哪些?位图没有额外的数据。 回答 auto* s
我在寻找有关如何检索 SDL_Texture 上像素的特定颜色的解决方案时遇到了一些问题...更具体一点:我正在尝试计算给定纹理中使用的平均颜色量。稍后我想将红色像素的数量除以像素总数。对于这个任务,
我正在使用 C++ 和 SDL 制作游戏,该游戏是太空入侵者类型的游戏。一切都很顺利,直到我在 while 循环中添加了背景图像,这是背景的渲染和初始化代码: SZ_Background.cpp: v
我有一个 sprite 类,它使用 SDL_Texture 而不是 SDL_Surface 来代替性能。该类看起来像这样: class Sprite { public: ...
我唯一看到的是 RenderDrawColor。 “circle.png”也在正确的文件夹中(main.cpp 所在的文件夹)。 #include #include int main(int ar
我正在尝试使用 SDL 播放视频。为此,我使用 opencv 加载视频并获取帧。然后我只需要将这些帧转换为 SDL_Texture*,然后我就可以在屏幕上绘制它们了。 那是我的问题,我正在将其转换为
我从在 gcc 中编译我的代码转向了 Visual Studio 2017 提供的编译器。 每次我尝试运行该应用程序时,我都会收到以下错误: 这是我认为错误来自的文件: Texture.h #incl
我一直在努力了解 SDL 的基础知识,但我被看似简单的东西难倒了。 SDL_MapRGB() 需要 const SDL_PixelFormat*,我使用 SDL_PixelFormatEnum 在我的
SDL_Texture *t0; SDL_Texture *t1; SDL_Texture *t[] = {t0,t1}; 它编译得很好,但如果我尝试渲染它(当然,考虑到 t0 和 t1 已经定义
我正在尝试制作一个简单的游戏,当我尝试渲染我的 SDL_Texture 时,我遇到了一个莫名其妙的错误。我已正确设置所有内容,我能够使用 SDL_RenderClear 成功清除屏幕,并且我的纹理不为
我是一名优秀的程序员,十分优秀!