⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 superpac.c

📁 这个是延伸mame的在wince平台下的游戏模拟器的代码
💻 C
字号:
/***************************************************************************

  vidhrdw.c

  Functions to emulate the video hardware of the machine.

***************************************************************************/

#include "driver.h"
#include "vidhrdw/generic.h"


/***************************************************************************

  Convert the color PROMs into a more useable format.

  digdug has one 32x8 palette PROM and two 256x4 color lookup table PROMs
  (one for characters, one for sprites). Only the first 128 bytes of the
  lookup tables seem to be used.
  The palette PROM is connected to the RGB output this way:

  bit 7 -- 220 ohm resistor  -- BLUE
        -- 470 ohm resistor  -- BLUE
        -- 220 ohm resistor  -- GREEN
        -- 470 ohm resistor  -- GREEN
        -- 1  kohm resistor  -- GREEN
        -- 220 ohm resistor  -- RED
        -- 470 ohm resistor  -- RED
  bit 0 -- 1  kohm resistor  -- RED

***************************************************************************/
void superpac_vh_convert_color_prom(unsigned char *palette, unsigned short *colortable,const unsigned char *color_prom)
{
	int i;

	for (i = 0;i < 32;i++)
	{
		int bit0,bit1,bit2;

		bit0 = (color_prom[31-i] >> 0) & 0x01;
		bit1 = (color_prom[31-i] >> 1) & 0x01;
		bit2 = (color_prom[31-i] >> 2) & 0x01;
		palette[3*i] = 0x21 * bit0 + 0x47 * bit1 + 0x97 * bit2;
		bit0 = (color_prom[31-i] >> 3) & 0x01;
		bit1 = (color_prom[31-i] >> 4) & 0x01;
		bit2 = (color_prom[31-i] >> 5) & 0x01;
		palette[3*i + 1] = 0x21 * bit0 + 0x47 * bit1 + 0x97 * bit2;
		bit0 = 0;
		bit1 = (color_prom[31-i] >> 6) & 0x01;
		bit2 = (color_prom[31-i] >> 7) & 0x01;
		palette[3*i + 2] = 0x21 * bit0 + 0x47 * bit1 + 0x97 * bit2;
	}

	/* characters */
	for (i = 0;i < 64*4;i++)
		colortable[i] = (color_prom[i + 32] & 0x0f);
	/* sprites */
	for (i = 64*4;i < 128*4;i++)
		colortable[i] = 0x1f - (color_prom[i + 32] & 0x0f);
}


void superpac_draw_sprite(struct osd_bitmap *dest,unsigned int code,unsigned int color,
	int flipx,int flipy,int sx,int sy)
{
	drawgfx(dest,Machine->gfx[1],code,color,flipx,flipy,sx,sy,&Machine->drv->visible_area,
		TRANSPARENCY_COLOR,16);
}


/***************************************************************************

  Draw the game screen in the given osd_bitmap.
  Do NOT call osd_update_display() from this function, it will be called by
  the main emulation engine.

***************************************************************************/
void superpac_vh_screenrefresh(struct osd_bitmap *bitmap,int full_refresh)
{
	int offs;


	/* for every character in the Video RAM, check if it has been modified */
	/* since last time and update it accordingly. */
	for (offs = videoram_size - 1;offs >= 0;offs--)
	{
		if (dirtybuffer[offs])
		{
			int sx,sy,mx,my;


			dirtybuffer[offs] = 0;

	/* Even if Super Pac-Man's screen is 28x36, the memory layout is 32x32. We therefore */
	/* have to convert the memory coordinates into screen coordinates. */
	/* Note that 32*32 = 1024, while 28*36 = 1008: therefore 16 bytes of Video RAM */
	/* don't map to a screen position. We don't check that here, however: range */
	/* checking is performed by drawgfx(). */

			mx = offs / 32;
			my = offs % 32;

			if (mx <= 1)
			{
				sx = 29 - my;
				sy = mx + 34;
			}
			else if (mx >= 30)
			{
				sx = 29 - my;
				sy = mx - 30;
			}
			else
			{
				sx = 29 - mx;
				sy = my + 2;
			}

			drawgfx(tmpbitmap,Machine->gfx[0],
					videoram[offs],
					colorram[offs],
					0,0,8*sx,8*sy,
					&Machine->drv->visible_area,TRANSPARENCY_NONE,0);
		}
	}

	/* copy the character mapped graphics */
	copybitmap(bitmap,tmpbitmap,0,0,0,0,&Machine->drv->visible_area,TRANSPARENCY_NONE,0);

	/* Draw the sprites. */
	for (offs = 0;offs < spriteram_size;offs += 2)
	{
		/* is it on? */
		if ((spriteram_3[offs+1] & 2) == 0)
		{
			int sprite = spriteram[offs];
			int color = spriteram[offs+1];
			int x = spriteram_2[offs]-17;
			int y = (spriteram_2[offs+1]-40) + 0x100*(spriteram_3[offs+1] & 1);
			int flipx = spriteram_3[offs] & 2;
			int flipy = spriteram_3[offs] & 1;

			switch (spriteram_3[offs] & 0x0c)
			{
				case 0:		/* normal size */
					superpac_draw_sprite(bitmap,sprite,color,flipx,flipy,x,y);
					break;

				case 4:		/* 2x vertical */
					sprite &= ~1;
					if (!flipy)
					{
						superpac_draw_sprite(bitmap,sprite,color,flipx,flipy,x,y);
						superpac_draw_sprite(bitmap,1+sprite,color,flipx,flipy,x,16+y);
					}
					else
					{
						superpac_draw_sprite(bitmap,sprite,color,flipx,flipy,x,16+y);
						superpac_draw_sprite(bitmap,1+sprite,color,flipx,flipy,x,y);
					}
					break;

				case 8:		/* 2x horizontal */
					sprite &= ~2;
					if (!flipx)
					{
						superpac_draw_sprite(bitmap,2+sprite,color,flipx,flipy,x,y);
						superpac_draw_sprite(bitmap,sprite,color,flipx,flipy,16+x,y);
					}
					else
					{
						superpac_draw_sprite(bitmap,sprite,color,flipx,flipy,x,y);
						superpac_draw_sprite(bitmap,2+sprite,color,flipx,flipy,16+x,y);
					}
					break;

				case 12:		/* 2x both ways */
					sprite &= ~3;
					if (!flipy && !flipx)
					{
						superpac_draw_sprite(bitmap,2+sprite,color,flipx,flipy,x,y);
						superpac_draw_sprite(bitmap,3+sprite,color,flipx,flipy,x,16+y);
						superpac_draw_sprite(bitmap,sprite,color,flipx,flipy,16+x,y);
						superpac_draw_sprite(bitmap,1+sprite,color,flipx,flipy,16+x,16+y);
					}
					else if (flipy && flipx)
					{
						superpac_draw_sprite(bitmap,1+sprite,color,flipx,flipy,x,y);
						superpac_draw_sprite(bitmap,sprite,color,flipx,flipy,x,16+y);
						superpac_draw_sprite(bitmap,3+sprite,color,flipx,flipy,16+x,y);
						superpac_draw_sprite(bitmap,2+sprite,color,flipx,flipy,16+x,16+y);
					}
					else if (flipx)
					{
						superpac_draw_sprite(bitmap,sprite,color,flipx,flipy,x,y);
						superpac_draw_sprite(bitmap,1+sprite,color,flipx,flipy,x,16+y);
						superpac_draw_sprite(bitmap,2+sprite,color,flipx,flipy,16+x,y);
						superpac_draw_sprite(bitmap,3+sprite,color,flipx,flipy,16+x,16+y);
					}
					else /* flipy */
					{
						superpac_draw_sprite(bitmap,3+sprite,color,flipx,flipy,x,y);
						superpac_draw_sprite(bitmap,2+sprite,color,flipx,flipy,x,16+y);
						superpac_draw_sprite(bitmap,1+sprite,color,flipx,flipy,16+x,y);
						superpac_draw_sprite(bitmap,sprite,color,flipx,flipy,16+x,16+y);
					}
					break;
			}
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -