- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我目前正在学习 SDL,并且正在尝试创建一个 Pacman 游戏。我正在尝试逐步进行,以免陷入大量代码的困境。
到目前为止,我已经创建了一个空白窗口并在其上渲染了 Pacman 图像。我可以按箭头键并在窗口周围移动 Pacman。我设置了它,因此 Pacman 图像存储为 SDL_Texture,我使用 RenderCopy 将其 blit 到窗口。每次用户按下箭头时,我都会移动图像的坐标并重新渲染整个图像。这很好用。然而,现在我想在屏幕上放一些点让吃 bean 人吃。如果我加载一个点图像并将其存储为新纹理以与 Pacman 一起 blit 到屏幕,但是,每次我移动 Pacman 时,点都会闪烁,因为它正在被删除并与 Pacman 一起重新渲染。
我的问题是,如何避免这种“闪烁”?我能以某种方式只重新渲染吃 bean 人而不重新渲染屏幕的其余部分吗?还是有另一种方法可以做到这一点?我想当我稍后在后台创建迷宫时也会遇到同样的问题。如何制作静态背景,每次重新渲染时都不会闪烁?
到目前为止,下面是我的代码。如果那里有任何格式错误的代码,请原谅我。正如我所说,我才刚刚开始学习 SDL(对 C++ 也很陌生),所以如果有任何明显的“你永远不应该那样做!”里面有一些东西,我很感激任何人指出它:)
#include <iostream>
#include <SDL2/SDL.h>
using namespace std;
const int WINDOW_HEIGHT = 480;
const int WINDOW_WIDTH = 640;
const int MOVE_WIDTH = 10;
int main(int argc, const char * argv[])
{
SDL_Window* mainWindow = NULL; //To hold the main window
SDL_Renderer* renderer = NULL; //To hold the renderer
SDL_Rect targetRect; //Rectangle to which pacman image will be drawn
SDL_Surface* bmpSurface = NULL; //To hold bmp image
SDL_Texture* bmpTexture = NULL; //To hold bmp image
//Initialize SDL and check for errors
if ( SDL_Init(SDL_INIT_EVERYTHING) != 0 )
{
cout << "ERROR: could not initialize SDL." << endl;
}
//Create a window
mainWindow = SDL_CreateWindow("BAM", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, WINDOW_WIDTH, WINDOW_HEIGHT, 0);
if (mainWindow == NULL)
{
cout << "ERROR: could not initialize mainWindow." << endl;
}
//Initialize renderer
renderer = SDL_CreateRenderer(mainWindow, -1, SDL_RENDERER_ACCELERATED);
//Load image and store in an SDL_Surface
bmpSurface = SDL_LoadBMP("/Users/billgrenard/Desktop/Programs/SDL/SDL_KeyPresses/SDL_KeyPresses/pacman_closed.bmp");
if ( bmpSurface == NULL )
{
cout << "ERROR: could not load bmp file." << endl;
}
//Convert surface to texture for rendering
bmpTexture = SDL_CreateTextureFromSurface(renderer, bmpSurface);
if ( bmpTexture == NULL )
{
cout << "ERROR: could not convert bmp surface." << endl;
}
SDL_FreeSurface(bmpSurface);
//Define rectangle where pacman image is to be blitted
targetRect.w = 30;
targetRect.h = 30;
targetRect.x = (WINDOW_WIDTH/2) - (targetRect.w/2);
targetRect.y = (WINDOW_HEIGHT/2) - (targetRect.h/2);
//Main game loop
while (1)
{
SDL_Event e;
if (SDL_PollEvent(&e))
{
//Quit when user x's out the window
if (e.type == SDL_QUIT)
{
break;
}
//If user presses a key enter switch statement
else if( e.type == SDL_KEYDOWN )
{
switch ( e.key.keysym.sym ) {
//If user presses up arrow and the resulting move is inside the window, then move the Pacman's position
case SDLK_UP:
if ( targetRect.y - MOVE_WIDTH > 0 )
{
targetRect.y -= MOVE_WIDTH;
}
break;
//If user presses down arrow and the resulting move is inside the window, then move the Pacman's position
case SDLK_DOWN:
if ( targetRect.y + MOVE_WIDTH < (WINDOW_HEIGHT - targetRect.w) )
{
targetRect.y += MOVE_WIDTH;
}
break;
//If user presses right arrow and the resulting move is inside the window, then move the Pacman's position
case SDLK_RIGHT:
if ( targetRect.x + MOVE_WIDTH < (WINDOW_WIDTH - targetRect.w) )
{
targetRect.x += MOVE_WIDTH;
}
break;
//If user presses left arrow and the resulting move is inside the window, then move the Pacman's position
case SDLK_LEFT:
if ( targetRect.x - MOVE_WIDTH > 0 )
{
targetRect.x -= MOVE_WIDTH;
}
break;
default:
break;
}
}
}
SDL_RenderClear(renderer);
SDL_RenderCopy(renderer, bmpTexture, NULL, &targetRect);
SDL_RenderPresent(renderer);
}
SDL_DestroyWindow(mainWindow);
SDL_DestroyTexture(bmpTexture);
SDL_DestroyRenderer(renderer);
SDL_Quit();
return 0;
}
编辑:为了回答 raser 的评论,这里是我找到 PollEvent 示例的链接:http://wiki.libsdl.org/SDL_CreateRenderer?highlight=%28%5CbCategoryAPI%5Cb%29%7C%28SDLFunctionTemplate%29
最佳答案
上述用于渲染 Pacman 的方法实际上可以很好地将点渲染到屏幕上。只需将点的图像存储在新纹理中,创建一个 SDL_Rect 来保存该纹理,然后使用 SDL_CreateRenderer 将点图像与吃 bean 人一起渲染到屏幕上。只要您没有使用 SDL_Delay 之类的东西来减慢帧速率,您就应该注意到渲染之间没有闪烁的点。
关于c++ - 在 SDL 中渲染静止图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21058880/
我正在尝试学习 Knockout 并尝试创建一个照片 uploader 。我已成功将一些图像存储在数组中。现在我想回帖。在我的 knockout 码(Javascript)中,我这样做: 我在 Jav
我正在使用 php 编写脚本。我的典型问题是如何在 mysql 中添加一个有很多替代文本和图像的问题。想象一下有机化学中具有苯结构的描述。 最有效的方法是什么?据我所知,如果我有一个图像,我可以在数据
我在两个图像之间有一个按钮,我想将按钮居中到图像高度。有人可以帮帮我吗? Entrar
下面的代码示例可以在这里查看 - http://dev.touch-akl.com/celebtrations/ 我一直在尝试做的是在 Canvas 上绘制 2 个图像(发光,然后耀斑。这些图像的链接
请检查此https://jsfiddle.net/rhbwpn19/4/ 图像预览对于第一篇帖子工作正常,但对于其他帖子则不然。 我应该在这里改变什么? function readURL(input)
我对 Canvas 有疑问。我可以用单个图像绘制 Canvas ,但我不能用单独的图像绘制每个 Canvas 。- 如果数据只有一个图像,它工作正常,但数据有多个图像,它不工作你能帮帮我吗? va
我的问题很简单。如何获取 UIImage 的扩展类型?我只能将图像作为 UIImage 而不是它的名称。图像可以是静态的,也可以从手机图库甚至文件路径中获取。如果有人可以为此提供一点帮助,将不胜感激。
我有一个包含 67 个独立路径的 SVG 图像。 是否有任何库/教程可以为每个路径创建单独的光栅图像(例如 PNG),并可能根据路径 ID 命名它们? 最佳答案 谢谢大家。我最终使用了两个答案的组合。
我想将鼠标悬停在一张图片(音乐专辑)上,然后播放一张唱片,所以我希望它向右移动并旋转一点,当它悬停时我希望它恢复正常动画片。它已经可以向右移动,但我无法让它随之旋转。我喜欢让它尽可能简单,因为我不是编
Retina iOS 设备不显示@2X 图像,它显示 1X 图像。 我正在使用 Xcode 4.2.1 Build 4D502,该应用程序的目标是 iOS 5。 我创建了一个测试应用(主/细节)并添加
我正在尝试从头开始以 Angular 实现图像 slider ,并尝试复制 w3school基于图像 slider 。 下面我尝试用 Angular 实现,谁能指导我如何使用 Angular 实现?
我正在尝试获取图像的图像数据,其中 w= 图像宽度,h = 图像高度 for (int i = x; i imageData[pos]>0) //Taking data (here is the pr
我的网页最初通过在 javascript 中动态创建图像填充了大约 1000 个缩略图。由于权限问题,我迁移到 suPHP。现在不用标准 标签本身 我正在通过这个 php 脚本进行检索 $file
我正在尝试将 python opencv 图像转换为 QPixmap。 我按照指示显示Page Link我的代码附在下面 img = cv2.imread('test.png')[:,:,::1]/2
我试图在这个 Repository 中找出语义分割数据集的 NYU-v2 . 我很难理解图像标签是如何存储的。 例如,给定以下图像: 对应的标签图片为: 现在,如果我在 OpenCV 中打开标签图像,
import java.util.Random; class svg{ public static void main(String[] args){ String f="\"
我有一张 8x8 的图片。 (位图 - 可以更改) 我想做的是能够绘制一个形状,给定一个 Path 和 Paint 对象到我的 SurfaceView 上。 目前我所能做的就是用纯色填充形状。我怎样才
要在页面上显示图像,你需要使用源属性(src)。src 指 source 。源属性的值是图像的 URL 地址。 定义图像的语法是: 在浏览器无法载入图像时,替换文本属性告诉读者她们失去的信息。此
**MMEditing是基于PyTorch的图像&视频编辑开源工具箱,支持图像和视频超分辨率(super-resolution)、图像修复(inpainting)、图像抠图(matting)、
我正在尝试通过资源文件将图像插入到我的程序中,如下所示: green.png other files 当我尝试使用 QImage 或 QPixm
我是一名优秀的程序员,十分优秀!