C++版本简易Flappy bird

大一,上学期学完了C,写了几个控制台游戏
这学期自学C++,由于学校课程第七周才有C++

边学边写了这个小游戏,SDL 图形库完成的图形绘画
时间匆忙,BUG也有,代码效率比较低
和原作品还是很大的差别, 源代码在附件游戏文件夹中

演示图

#include <stdlib.h>
#include<windows.h>
#include <time.h>
#include<conio.h>
#include <iostream>
#include <mmsystem.h>
#include "SDL\SDL_image.h"
#include "SDL\SDL_ttf.h"
#include "SDL\SDL.h"
using namespace std;
#pragma comment(lib, "winmm.lib")
#pragma comment(linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"")
 int iii=0;
 int score =0;
 int y=0;
 int posi[3][2]= {{640,-300},{940,-300},{1240,-300}};
int i=0,n=3;  //n为管道对数
SDL_Color textColor_1 = { 37, 134, 108 };//绿色
//SDL_Color textColor_2 = { 112, 112, 35 };
SDL_Color textColor_2 = { 255, 255, 255 }; //白色

SDL_Color textColor_3 = { 0, 88, 132 }; //白色

class Event
{
public:
  SDL_Event event;
  Uint8 *keystates;
  Event()
  {
    keystates=SDL_GetKeyState( NULL );
  }

};
Event thing;
class Data
{
public:
  int bird_y;
  int score;
  int posi[20][2];
  SDL_Rect bird_1;
  SDL_Rect bird_2;
  SDL_Rect bg;
  SDL_Rect welcome;
  SDL_Rect pipe_up;
  SDL_Rect pipe_down;
  SDL_Rect bird_cls;
  SDL_Rect foot;

  SDL_Surface* load_imag(char *s)
  {
    SDL_Surface* temp;
    temp=IMG_Load(s);

    bg.x=0;
    bg.y=0;
    bg.w=640;
    bg.h=480;

    welcome.x=681;
    welcome.y=0;
    welcome.w=640;
    welcome.h=480;

    bird_1.x=17;
    bird_1.y=508;
    bird_1.w=52;
    bird_1.h=34;

    bird_2.x=461;
    bird_2.y=531;
    bird_2.w=52;
    bird_2.h=33;

    bird_cls.w=52;
    bird_cls.h=33;
    bird_cls.x=0;
    bird_cls.y=0;

    pipe_up.x=1361;
    pipe_up.y=11;
    pipe_up.w=103;
    pipe_up.h=410;

    pipe_down.x=1487;
    pipe_down.y=14;
    pipe_down.w=103;
    pipe_down.h=443;

    foot.x=0;
    foot.y=404;
    foot.w=640;
    foot.h=80;

    return temp;//SDL_DisplayFormat( temp );
  }

  TTF_Font* load_font()
  {
    SDL_Init( SDL_INIT_EVERYTHING );
    TTF_Init();
    return TTF_OpenFont( "main_1.dat", 36 );

  }
};

Data data;

class Pri
{

public:
  SDL_Surface* out; //输出
  SDL_Surface* main ; //主窗口
  TTF_Font *font;
  SDL_Rect a; //设置初始位置
  SDL_Surface*bird;
  SDL_Rect xy;
  SDL_Surface*font_1;
  SDL_Surface*font_2;
  SDL_Surface*font_11;
  SDL_Surface*font_22;

  Pri()
  {
      TTF_Font *font = NULL;
      init();//初始化输出设备

  }

  int init()
  {
    SDL_Init( SDL_INIT_EVERYTHING );
    TTF_Init();
    main= SDL_SetVideoMode( 640, 478, 32, SDL_SWSURFACE );
    SDL_WM_SetCaption("Flappy bird",NULL);//标题
    font=data.load_font();
    out=data.load_imag("main_2.dat");
    y=150;

    posi[0][0]=640;
    posi[0][1]=-300;
    posi[1][0]=940;
    posi[1][1]=-300;
    posi[2][0]=1240;
    posi[2][1]=-300;
    return 1;
  }

  int pipe()
  {

  }

  int bir(int y)//x=150
  {int ii;
  i+=1;
  xy.x=150;
  xy.y=y;
  if(i<14)

    {
      xy.x=150;
      xy.y=y;
      SDL_BlitSurface(out,&data.bg,main,NULL);

      for(ii=0;ii<n;ii++)
      {
        xy.x=posi[ii][0];
        xy.y=posi[ii][1];
        SDL_BlitSurface(out,&data.pipe_down,main,&xy);
        xy.x=posi[ii][0];
        xy.y=posi[ii][1]+600;
        SDL_BlitSurface(out,&data.pipe_up,main,&xy);

      }

      xy.x=150;
      xy.y=y;
      SDL_BlitSurface(out,&data.bird_1,main,&xy);
    xy.x=0;
      xy.y=404;
      SDL_BlitSurface(out,&data.foot,main,&xy);

    }

  else
    {
      xy.x=150;
      xy.y=y;
      SDL_BlitSurface(out,&data.bg,main,NULL);
      for(ii=0;ii<n;ii++)
      {
        xy.x=posi[ii][0];
        xy.y=posi[ii][1];
        SDL_BlitSurface(out,&data.pipe_down,main,&xy);

        xy.x=posi[ii][0];
        xy.y=posi[ii][1]+600;
        SDL_BlitSurface(out,&data.pipe_up,main,&xy);

      }

      xy.x=150;
      xy.y=y;
      SDL_BlitSurface(out,&data.bird_2,main,&xy);
      xy.x=0;
      xy.y=404;
      SDL_BlitSurface(out,&data.foot,main,&xy);
      if(i>28)i=0;
    }
    return 0;

  }

  int bg()
  {
      SDL_BlitSurface(out,&data.bg,main,&xy);

      return 0;
  }

  int over()
  {
    int x=0,y=0,i=0;

    xy.x=250;
    xy.y=150;
    font_1=TTF_RenderText_Solid( font, "Game over !", textColor_3);
    SDL_BlitSurface( font_1 , NULL, main, &xy);

    SDL_Flip(main);

    xy.x=350;
    xy.y=200;
    font_1=TTF_RenderText_Solid( font, "Retry game", textColor_1 );
    font_11=TTF_RenderText_Solid( font, "Retry game", textColor_2 );
    SDL_BlitSurface( font_1 , NULL, main, &xy); 

    xy.x=350;
    xy.y=280;

    font_2=TTF_RenderText_Solid( font, " Exit game", textColor_1 );
    font_22=TTF_RenderText_Solid( font, " Exit game", textColor_2 );
    SDL_BlitSurface( font_2 , NULL, main, &xy);
/*
    xy.x=10;
    xy.y=440;
    //野指针
    SDL_BlitSurface( TTF_RenderText_Solid( font, "Esc:exit game  Space:to jump hekun ", textColor_1 ) , NULL, main, &xy);
    SDL_Flip( main ); //更新窗口
    */

    while(SDL_PollEvent( &thing.event ), 1)
    {
      i+=2;
      Sleep(1);
      if( thing.keystates[ SDLK_ESCAPE] )exit(0);
      if( thing.event.type == SDL_QUIT )// 点击了SDL关闭按钮
      {
        exit(0);
      } 

      if((x>350&&x<540)&&(y<240)&&(y>200))
      {
        if(thing. event.type == SDL_MOUSEBUTTONDOWN)
          if(thing.event.button.button== SDL_BUTTON_LEFT )
          {
            SDL_FreeSurface(font_1);
            SDL_FreeSurface(font_11);
            SDL_FreeSurface(font_22);
            SDL_FreeSurface(font_2);
          WinExec("Flappy bird.exe",NULL);
          exit(0);
            return 11;
          }

      }
      else
      {

      }

      if((x>350&&x<540)&&(y<320)&&(y>280))  //结束游戏
      {
        if(thing. event.type == SDL_MOUSEBUTTONDOWN)
          if(thing.event.button.button== SDL_BUTTON_LEFT )exit(0);

      }

      if(thing. event.type == SDL_MOUSEMOTION )
      {
        x=thing.event.motion.x;
        y=thing.event.motion.y;

        //获得鼠标坐标
        if((thing.event.motion.x>350&&thing.event .motion .x<540)&&(thing.event.motion.y<240)&&(thing.event.motion.y>200))
        {
          xy.x=350;
          xy.y=200;
          SDL_BlitSurface( font_11, NULL, main, &xy);
          SDL_Flip(main);
        }
        else
        {
          xy.x=350;
          xy.y=200;
          SDL_BlitSurface( font_1 , NULL, main, &xy);
          SDL_Flip(main);
        }

        if((thing.event.motion.x>350&&thing.event .motion .x<540)&&(thing.event.motion.y<320)&&(thing.event.motion.y>280))
        {
          xy.x=350;
          xy.y=280;
          SDL_BlitSurface( font_22 , NULL, main, &xy);
          SDL_Flip(main);

        }
        else
        {
          xy.x=350;
          xy.y=280;
          SDL_BlitSurface( font_2 , NULL, main, &xy);
          SDL_Flip(main);
        }
      }

    }
    return 0;
  }

  int welcome()
  {    

    int x=0,y=0,i=0;

    SDL_BlitSurface(out,&data.welcome,main,NULL);
    bird=out;
    xy.x=350;
    xy.y=200;
    font_1=TTF_RenderText_Solid( font, "Start game", textColor_1 );
    font_11=TTF_RenderText_Solid( font, "Start game", textColor_2 );
    SDL_BlitSurface( font_1 , NULL, main, &xy); 

    xy.x=350;
    xy.y=280;

    font_2=TTF_RenderText_Solid( font, " Exit game", textColor_1 );
    font_22=TTF_RenderText_Solid( font, " Exit game", textColor_2 );
    SDL_BlitSurface( font_2 , NULL, main, &xy); 

    xy.x=10;
    xy.y=440;
    //野指针
    SDL_BlitSurface( TTF_RenderText_Solid( font, "Esc:exit game  Space:to jump hekun ", textColor_1 ) , NULL, main, &xy);
    SDL_Flip( main ); //更新窗口

    while(SDL_PollEvent( &thing.event ), 1)
    {
      i+=2;
      Sleep(1);
      if( thing.keystates[ SDLK_ESCAPE] )exit(0);
      if( thing.event.type == SDL_QUIT )// 点击了SDL关闭按钮
      {
        exit(0);
      } 

      if((x>350&&x<540)&&(y<240)&&(y>200))
      {
        if(thing. event.type == SDL_MOUSEBUTTONDOWN)
          if(thing.event.button.button== SDL_BUTTON_LEFT )
          {
            SDL_FreeSurface(font_1);
            SDL_FreeSurface(font_11);
            SDL_FreeSurface(font_22);
            SDL_FreeSurface(font_2);
            return 0;
          }

      }
      else
      {

      }

      if((x>350&&x<540)&&(y<320)&&(y>280))  //结束游戏
      {
        if(thing. event.type == SDL_MOUSEBUTTONDOWN)
          if(thing.event.button.button== SDL_BUTTON_LEFT )exit(0);

      }

      if(thing. event.type == SDL_MOUSEMOTION )
      {
        x=thing.event.motion.x;
        y=thing.event.motion.y;

        //获得鼠标坐标
        if((thing.event.motion.x>350&&thing.event .motion .x<540)&&(thing.event.motion.y<240)&&(thing.event.motion.y>200))
        {
          xy.x=350;
          xy.y=200;
          SDL_BlitSurface( font_11, NULL, main, &xy);
          SDL_Flip(main);
        }
        else
        {
          xy.x=350;
          xy.y=200;
          SDL_BlitSurface( font_1 , NULL, main, &xy);
          SDL_Flip(main);
        }

         if((thing.event.motion.x>350&&thing.event .motion .x<540)&&(thing.event.motion.y<320)&&(thing.event.motion.y>280))
        {
          xy.x=350;
          xy.y=280;
          SDL_BlitSurface( font_22 , NULL, main, &xy);
          SDL_Flip(main);

        }
        else
        {
          xy.x=350;
          xy.y=280;
          SDL_BlitSurface( font_2 , NULL, main, &xy);
          SDL_Flip(main);
        }
      }

      if(i==400)
      {
        xy.x=150;
        xy.y=250;
        SDL_BlitSurface(bird,&data.bird_1,main,&xy);
        SDL_Flip(main);
      }

      if(i==800)
      {
        xy.x=150;
        xy.y=250;
        SDL_BlitSurface(bird,&data.bird_2,main,&xy);
        i=0;
        SDL_Flip(main);
      }

    }
    return 0;

  }

};

Pri pri;

int game_judge()
{int i=0;
  if(y>370||y<-10)
  {
    if(pri.over()==11)return 12;

  }

  for(i=0;i<3;i++)
  {
    if(posi[i][0]<202 &&posi[i][0]>50)
    {
      if(y<posi[i][1]+ 420 ||y>posi[i][1]+570)
      {if(pri.over()==11)return 12;}
    }

  }

  return 0;
}

int game_loop()
{ y=150,i=0;
  int ii=0,iii=0;
  SDL_Surface *font;
  pri.bg();

  char s[50];
  Uint32 start = 0;
  sprintf(s," FPS:%d\t\t\t\t\t\t\t\tScore:%d",1000/(SDL_GetTicks()-start),score);

  int q=0;
while(SDL_PollEvent( &thing.event ), 1)
{

  start = SDL_GetTicks();
  i++;
  Sleep(1);
  SDL_Flip(pri.main);
  y+=4;
  if(y>430)y=100;

  if(thing.event.button.state==SDL_PRESSED)y-=20;
  if( thing.keystates[ SDLK_SPACE] )y-=20;
  if( thing.keystates[ SDLK_ESCAPE] )exit(0);
  if( thing.event.type == SDL_QUIT )// 点击了SDL关闭按钮
  {
    exit(0);
  } 

  if(game_judge()==12)return 0;

    pri.bir(y);

    //显示 每秒循环的次数
    ii++;
    if(ii>20)
    {
      sprintf(s," FPS:%d\t\t\t\t\t\t\t\tScore:%d",1000/(SDL_GetTicks()-start)+rand()%5,score);
      ii=0;
    }

      font=TTF_RenderText_Solid( pri.font, s, textColor_2 );
      SDL_BlitSurface(font , NULL,pri. main, NULL);
      SDL_Flip(pri.main);
      SDL_FreeSurface(font);

      posi[0][0]-=2;
      posi[1][0]-=2;
      posi[2][0]-=2;

      if(posi[0][0]<=(-110))
      {posi[0][0]=posi[2][0]+300;posi[0][1]=-(rand()%180)-220;}

      if(posi[1][0]<=(-110))
      {posi[1][0]=posi[0][0]+300;posi[1][1]=-(rand()%180)-220;}

      if(posi[2][0]<=(-110))
      {posi[2][0]=posi[1][0]+300;posi[2][1]=-(rand()%180)-220;}

      iii++;
      if(iii>50)

      for(iii=0;iii<3;iii++)
      {
        if(posi[iii][0]<50);
        score++;
        iii=0;
        break;
      }

}

  return 0;

}

int main(int argc, char* argv[])
{

  while(1)
  {

    pri.init();//初始化输出设备
    pri.welcome();
    game_loop();

  }
  return 0;
}
 

以上所述就是本文的全部内容了,希望大家能够喜欢。

(0)

相关推荐

  • Javascript编写2048小游戏

    去年2048很火, 本来我也没玩过, 同事说如果用JS写2048 只要100多行代码: 今天试了一下, 逻辑也不复杂, 主要是数据构造函数上的数据的各种操作, 然后通过重新渲染DOM实现界面的更新, 整体不复杂, JS,css,和HTML合起来就300多行: 界面的生成使用了underscore.js的template方法, 使用了jQuery,主要是DOM的选择和操作以及动画效果,事件的绑定只做了PC端的兼容,只绑定了keydown事件: 把代码放到github-page上, 通过点击这里查看

  • javascript实现别踩白块儿小游戏程序

    最近有朋友找我用JS帮忙仿做一个别踩白块的小游戏程序,但他给的源代码较麻烦,而且没有注释,理解起来很无力,我就以自己的想法自己做了这个小游戏,主要是应用JS对DOM和数组的操作. 程序思路:如图:将游戏区域的CSS设置为相对定位.溢出隐藏;两块"游戏板"上分别排布着24块方格,黑色每行随机产生一个,"游戏板"向下滚动并交替显示,将每个操作板的黑块位置存入数组,每次点击时将数组pop出来进行比对(我觉得亮点在这--). 这里是游戏的GitHub地址,大家可以到里点击中

  • Nodejs实现多人同时在线移动鼠标的小游戏分享

    最近因为项目需要,所以研究了一下nodejs的websocket实现,socket.io,这是nodejs后台应用websocket广泛使用的框架. 准备工作 1.安装socket.io,使用命令npm install socket.io 2.windows系统的话,需要vc编译环境,因为安装socket.io的时候,会编译vc代码 游戏基本原理 1.服务器监听客户端的连接 2.客户端连接成功时候,绑定页面移动鼠标事件,事件里处理发送当前坐标给服务器 3.服务器保存一个全局的坐标对象,并以客户端

  • 纯javascript模仿微信打飞机小游戏

    七夕情人节也不要忘了打游戏喔喔-,下面小编为大家准备的情人节礼物之纯javascript模仿微信打飞机小游戏分享给天下的情人们. 首先给大家展示效果图: 查看演示      源码下载 纯JavaScript模仿微信打飞机游戏,做网页小游戏的借鉴下,界面设计是竖长形仿手机屏幕风格,游戏效果流畅.具有分数统计,里面的JS封装类中包括有创建飞机类.飞机移动行为控制,创建子弹类,产生min到max之间的随机数,判断本方飞机是否移出边界,如果移出边界,则取消mousemove事件,反之加上mousemov

  • 纯JavaScript 实现flappy bird小游戏实例代码

    前言: <flappy bird>是一款由来自越南的独立游戏开发者Dong Nguyen所开发的作品,游戏于2013年5月24日上线,并在2014年2月突然暴红.2014年2月,<Flappy Bird>被开发者本人从苹果及谷歌应用商店撤下.2014年8月份正式回归APP STORE,正式加入Flappy迷们期待已久的多人对战模式.游戏中玩家必须控制一只小鸟,跨越由各种不同长度水管所组成的障碍. 正文: 接下来就是一步一步来实现它 步骤1:页面布局,这儿就不多说了,页面内容如下:

  • C++版本简易Flappy bird

    大一,上学期学完了C,写了几个控制台游戏 这学期自学C++,由于学校课程第七周才有C++ 边学边写了这个小游戏,SDL 图形库完成的图形绘画 时间匆忙,BUG也有,代码效率比较低 和原作品还是很大的差别, 源代码在附件游戏文件夹中 演示图 #include <stdlib.h> #include<windows.h> #include <time.h> #include<conio.h> #include <iostream> #include

  • 利用Jetpack Compose复刻游戏Flappy Bird

    目录 1.拆解游戏 2.复刻画面 ⅰ.布置远近景 ⅱ.摆放管道 ⅲ.放置小鸟 3.状态管理和架构 4.路面动起来 5.管道动起来 6.小鸟飞起来 7.碰撞和实时分值 8.结束分值和重新开始 9.最终效果 Flappy Bird是13年红极一时的小游戏,其简单有趣的玩法和变态的难度形成了强烈反差,引发全球玩家竞相把玩,欲罢不能!遂选择复刻这个小游戏,在实现的过程中向大家演示Compose工具包的UI组合.数据驱动等重要思想. 1.拆解游戏 不记得这个游戏或完全没玩过的朋友,可以点击下面的链接,体验

  • python实现flappy bird游戏

    flappy bird最近火遍大江南北,教你用python写游戏的第一课就向它开刀了. 这个课程的基础是假定你有比较不错的编程功底,对python有一点点的基础. 一.准备工作 1.用python写游戏需要什么呢? 1)当然是python本身了,我用的是python2.7,不同版本大同小异. 2)pygame,这个非常重要,所有的核心都是基于这个lib的. 2.分析游戏 flappy bird这个游戏很简单,大致可以分为4个部分: 1)背景.背景分为两个,一个是bg,一个是land.bg就是那张

  • python flappy bird小游戏分步实现流程

    目录 导语: 开发工具: 环境搭建 运行视频: 正文: 计分表 结尾: 导语: 哈喽,哈喽~今天小编又来分享小游戏了——flappy bird(飞扬的小鸟),这个游戏非常的经典,游戏中玩家必须控制一只小鸟,跨越由各种不同长度水管所组成的障碍.这个游戏能对于小编来说还是有点难度的. 开发工具: Python版本:3.6.4 相关模块: pygame模块: 以及一些python自带的模块. 环境搭建 安装Python并添加到环境变量,pip安装需要的相关模块即可. 运行视频: 播放链接:https:

  • java实现Flappy Bird游戏源代码

    本文实例为大家分享了java实现Flappy Bird游戏的具体代码,供大家参考,具体内容如下 /* 2017/7/23 */ import java.awt.Graphics; //import java.util.Timer; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.MouseListener; import java.awt.event.Mo

  • Unity3d实现Flappy Bird游戏

    本文实例为大家分享了Unity3d实现Flappy Bird的具体代码,供大家参考,具体内容如下 一.小鸟 在游戏中,小鸟并不做水平位移,而是通过障碍物的移动让小鸟有水平运动的感觉,小鸟只需要对鼠标的点击调整竖直加速度就可以了,同时加上水平旋转模仿原版的FlappyBird的运动.同时,还要对竖直位置进行判断,否则游戏不能正常结束. 这里贴上小鸟上附加的脚本代码 Player.cs using UnityEngine; using System.Collections; public class

  • C语言实现flappy bird游戏

    本文实例为大家分享了C语言实现flappy bird的具体代码,供大家参考,具体内容如下 #include<stdio.h> #include<conio.h> #include<windows.h> //定义全局变量 int high,width; //边界 int bird_x,bird_y; //小鸟坐标 int bar_y; //挡板坐标 int bar_xTop,bar_xDown; //挡板开口上下坐标 int score; //得分 void HideCu

  • python实现简单flappy bird

    本文实例为大家分享了python实现flappy bird的简单代码,供大家参考,具体内容如下 import pygame from pygame.locals import * from sys import exit import random # 屏幕宽度 SCREENWIDTH = 288 # 屏幕高度 SCREENHEIGHT = 512 IMAGES = {} # 背景图片地址 BACKGROUND_PATH = 'back_ground.png' PIPE_PATH = 'pipe

  • Unity实现Flappy Bird游戏开发实战

    本文实例为大家分享了Unity实现Flappy Bird游戏的具体代码,供大家参考,具体内容如下 参考:腾讯课程(零基础制作像素鸟) 环境:Unity2017.2.0f3 主界面(Main)的制作 没有什么技巧性 注意点: 1.写好Button的点击效果,并在UI上添加效果 2.切换界面的实现不需要通过load,直接设置SetActive()true or false 来的更快更效率 // 比如:当点击打开解释说明的按钮时候 public void clickOpenExplainScene()

随机推荐