2

我从 SDL 开始,我正在阅读介绍,我正在尝试drawPixel他们的方法。我正在做的是一个 ppm 查看器,到目前为止,我有一个数组中的 rgb 值并且被正确存储(我通过打印数组并确保它们对应于它们在 ppm 文件中的位置来检查它们)并且我想使用 SDL画图。到目前为止,我编写的代码是(这是main.cpp文件,如果ppm.hpp需要ppm.cpp,请告诉我添加它们)

#include <iostream>
#include <SDL/SDL.h>

#include "ppm.hpp"

using namespace std;

void drawPixel (SDL_Surface*, Uint8, Uint8, Uint8, int, int);

int main (int argc, char** argv) {
    PPM ppm ("res/cake.ppm");

    if (SDL_Init(SDL_INIT_AUDIO | SDL_INIT_VIDEO) < 0) {
        cerr << "Unable to init SDL: " << SDL_GetError() << endl;
        exit(1);
    }

    atexit(SDL_Quit); // to automatically call SDL_Quit() when the program terminates

    SDL_Surface* screen;
    screen = SDL_SetVideoMode(ppm.width(), ppm.height(), 32, SDL_SWSURFACE);
    if (screen == nullptr) {
        cerr << "Unable to set " << ppm.width() << "x" << ppm.height() << " video: " << SDL_GetError() << endl;
        exit(1);
    }

    for (int i = 0; i < ppm.width(); i++) {
        for(int j = 0; j < ppm.height(); j++) {
            drawPixel(screen, ppm.red(i,j), ppm.green(i,j), ppm.blue(i,j), i, j);
        }
    }

    return 0;
}

void drawPixel (SDL_Surface* screen, Uint8 R, Uint8 G, Uint8 B, int x, int y) {
    Uint32 color = SDL_MapRGB(screen->format, R, G, B);

    if (SDL_MUSTLOCK(screen)) {
        if (SDL_LockSurface(screen) < 0) {
            return;
        }
    }

    switch (screen->format->BytesPerPixel) {
        case 1: { // Assuming 8-bpp
            Uint8* bufp;

            bufp = (Uint8*)screen->pixels + y * screen->pitch + x;
            *bufp = color;
        }
        break;

        case 2: { // Probably 15-bpp or 16-bpp
            Uint16 *bufp;

            bufp = (Uint16*)screen->pixels + y * screen->pitch / 2 + x;
            *bufp = color;
        }
        break;

        case 3: { // Slow 24-bpp mode, usually not used
            Uint8* bufp;

            bufp = (Uint8*)screen->pixels + y * screen->pitch + x;
            *(bufp + screen->format->Rshift / 8) = R;
            *(bufp + screen->format->Gshift / 8) = G;
            *(bufp + screen->format->Bshift / 8) = B;
        }
        break;

        case 4: { // Probably 32-bpp
            Uint32* bufp;

            bufp = (Uint32*)screen->pixels + y * screen->pitch / 4 + x;
            *bufp = color;
        }
        break;
    }

    if (SDL_MUSTLOCK(screen)) {
        SDL_UnlockSurface(screen);
    }

    SDL_UpdateRect(screen, x, y, 1, 1);
}

正如介绍所提供的drawPixel那样,现在调用了我尝试使用的 ppm 文件cake.ppm,它的大小为 720x540,但是当我构建并运行此代码时,我得到应用程序没有响应。我在一个 426x299 的较小 ppm 文件上进行了尝试,它显示了一个窗口,窗口上放置了颜色。

  1. 为什么它不能在cake.ppm文件上工作而在其他文件上工作?是因为尺寸吗?
  2. 当我尝试 ppm 文件,第二个 426x299 或其他 ppm 文件时,颜色完全不同,这是为什么呢?
  3. 当我运行应用程序时,放置像素后,窗口关闭,我该如何保留它?

尝试一个文件squares.ppm,它应该是这样的: 它应该是什么

但这就是我得到的 我得到了什么

4

0 回答 0