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

📄 smb.c

📁 supermario游戏源码。
💻 C
字号:
/****************************************************************************
*Super Mario Bros.							    *
*Copyright 1985 Nintendo						    *
*Coded by:								    *
*  William Merrill Buerger						    *
*  Buergerw@warp.msoe.edu						    *
*  http://www.msoe.edu/~buergerw					    *
*With help from:							    *
*  John Ratke		-Keyboard Handler				    *
*  Themie Gouthas	-XLIB graphics stuff				    *
****************************************************************************/

#include<f:\smb\smb.h>			//Main Header file (f:\smb\ = path of smb.h)//
#include<f:\smb\smbfunc.c>		//Function file//

//MAIN///////////////////////////////////////////////////////////////////////
void main()
{
  int move;			//DEFINE & INITIALIZE LOCAL VARIABLES//
  int up;
  int down=0;
  int finish=0;
  int jumploop=0;
  int numplayers;
  int palloop;
  colorpal tempc;

  init();
  curplay=0;
  getmario();
  getinputs();
  numplayers=startscreen();
  if (numplayers==1)
    player[1].lives=0;

//MAIN GAME LOOP/////////////////////////////////////////////////////////////
  while(finish!=3)
  {
    setcolors();
    times[0]=201;
    levelscreen();
    marioy=getinputs();
    if (player[curplay].screenx>=data.startpos[0]*16)
      player[curplay].screenx=data.startpos[0]*16;
    else
      player[curplay].screenx=0;
    if (player[curplay].screenx>0)
      marioy=data.startpos[1];
    mariox=40;
    up=0;
    move=0;
    down=0;
    palloop=0;
    tempc=data.palette[21];
    data.sprite=6;
    gettime(&t);
    times[1]=t.ti_sec;
    times[2]=times[1]-1;
    fillscreen(BACKGROUND);
    while(!finish)			//CURRENT LEVEL AND PLAYER LOOP//
    {
      x_page_flip(0,0);
      rotatepal(&palloop,&tempc);
      fillscreen(BACKGROUND);
      drawscreen(player[curplay].screenx);
      drawmario(mariox,marioy);
      gettime(&t);
      times[1]=t.ti_sec;
      if (marioy<207)
	check_keybuf(&move,&finish,&up,&down,&jumploop);
      animate_mario(move);
      move_mario(&move);
      check_jump(&up,&down,&jumploop);
      check_blocks();
      check_finish(&finish);
    }

//REACT TO END OF CURRENT PLAYER LOOP////////////////////////////////////////
    switch (finish)
    {
      case 1:
	player[curplay].lives--;
	finish=0;
	if (numplayers==2)
	{
	  if (curplay==0 && player[1].lives!=0)
	    curplay=1;
	  else
	    if (curplay==1 && player[0].lives!=0)
	      curplay=0;
	}
	if (player[0].lives==0 && player[1].lives==0)
	  finish=3;
	break;
      case 2:
	player[curplay].level++;
	if (player[curplay].level%5==0)
	  player[curplay].level++;
	player[curplay].screenx=0;
	finish=0;
	break;
      case 3:
	graphstring(130,100,"Game Over",TEXTCOLOR,VisiblePageOffs);
//	while(!keybuf[KEY_ENTER]);
	break;
    }
  }

//RETURN SCREEN AND KEYBOARD TO NORMAL///////////////////////////////////////
  exitgame();
}
//END////////////////////////////////////////////////////////////////////////

⌨️ 快捷键说明

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