2

我在 GBA 中编写游戏是为了好玩,并想使用模式 4。我最近在模式 3 中创建了一个游戏,它的 dma 非常简单。如果我想在屏幕上绘制图像,dma 结构会相同吗?这是我所拥有的:

/* 
 * A function that will draw an arbitrary sized image * onto the screen (with DMA).
 * @param r row to draw the image
 * @param c column to draw the image
 * @param width width of the image
 * @param height height of the image
 * @param image Pointer to the first element of the image. */
 void drawImageInMode4(int r, int c, int width, int height, const u16* image)
 {
   for(int i = 0; i < height; i++){
     DMA[3].src = image + OFFSET(i,0,width);
     //offset calculates the offset of pixel to screen
     DMA[3].dst = VIDEOBUFFER + OFFSET(r+i,c,240);
     DMA[3].cnt = DMA_ON | width;
 }

我觉得这不是使用模式 4,而是使用模式 3。我已经查看了如何修改我的代码,以便它可以在模式 4 下工作。提前谢谢你!

4

1 回答 1

1

在 GBA 上,模式 3 和模式 4 的主要区别在于,模式 3 每个像素使用 2 个字节,而模式 4 使用调色板表的每个像素使用一个字节。您仍将数据复制到同一位置,但视频硬件对其的解释不同。(Tonc 包含一个很好的演示。

您需要对代码进行的主要更改是:

  • 将每行复制的字节数减半
  • 调整OFFSET宏以返回模式 4 的正确值
  • 选择您要将像素数据写入两个页面中的哪一个

(您还需要将位图转换为 8bpp 格式并为其提供调色板数据。)

模式 4 引入了另一个问题:您的图像可能是奇数字节宽。由于 VRAM 不支持单字节写入,您要么需要编写一些特殊代码来处理这种情况,要么永远不要绘制具有奇数宽度或 x 位置的图像。

于 2016-07-14T07:04:13.227 回答