3004|3

5

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

乒乓球游戏机设计的问题,求关注 [复制链接]

各位大虾,我有一程序描述的是乒乓球游戏机,可是当球处于刚过网的时候,即i=4或5时,仿真击球会出现问题,还请大虾们能够解释下,多谢了。。

library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;     --引用必要的库函数和包集合
entity pingponggame is   --实体名为pingponggame
  port(reset:in std_logic;
       clk:in std_logic;
       startbutton:in std_logic;                        --开始游戏输入端口
       serve:in std_logic_vector(1 to 2);               --发球输入端口
       hit1,hit2:in std_logic;                          --甲和乙的击球输入端口
       light:out std_logic_vector(1 to 8);              --控制8个发光二极管的输出端口
       score11,score12,score21,score22:out std_logic_vector(1 to 7));         --4个用于控制4个7段译码器的输出端口
end pingponggame;
architecture game of pingponggame is
type pingpong is (waitserve,light1on,ballmoveto2,allow2hit,light8on,ballmoveto1,allow1hit);   ---设置7个状态,为枚举数据类型,记为pingpong
signal state:pingpong;
signal i:integer range 0 to 8;
signal count1,count2:std_logic_vector(1 to 5):="00000"; ---内部计数器,是5位二进制变量
component mydecoder is
port(binaryin: in std_logic_vector(1 to 5);
bcdout1:out std_logic_vector(1 to 7);
bcdout2:out std_logic_vector(1 to 7));
end component;                                          ---调用记分译码器
begin
process(clk)                                            --状态机进程
  begin
    if reset='1' then    --异步置位
      i<=0;
      count1<="00000";
      count2<="00000";
    elsif clk'event and clk='1' then  --当处于时钟inclock上升沿时  
      if count1="10101"or count2="10101"then
        i<=0;
        count1<="00000";
        count2<="00000";
      elsif startbutton='0' then
        i<=0;
        count1<="00000";
        count2<="00000";
      else        --以下case语句是程序中最关键的状态机部分
        case state is
          when waitserve=>   --进程处于等待发球状态
            case serve is
              when "10"=> i<=1;state<=light1on;
              when "01"=> i<=8;state<=light8on;
              when others=> i<=0;
            end case;
          when light1on=>     --进程处于第一盏灯亮状态
            i<=2;
            if hit2='1' then
              i<=0;
              count1<=count1+1;state<=waitserve;  
            else
              state<=ballmoveto2;
            end if;
          when light8on=>     --进程处于第八盏灯亮状态
            i<=7;
            if hit1='1' then
              i<=0;
              count2<=count2+1;state<=waitserve;
            else
              state<=ballmoveto1;
            end if;
          when ballmoveto1=>       --进程处于球向甲移动状态
            if hit1='1' then
              i<=0;
              count2<=count2+1;
              state<=waitserve;
            elsif i=5 then
              i<=4;
              state<=allow1hit;
            else i<=i-1;
            end if;
          when ballmoveto2=>      --进程处于球向乙移动状态
            if hit2='1'then
              i<=0;
              count1<=count1+1;state<=waitserve;
            elsif i=4 then
              i<=5;
              state<=allow2hit;
            else
              i<=i+1;
            end if;
          when allow1hit=>       --进程处于允许甲击球状态
              if hit1='1' then
                i<=i+1;
                state<=ballmoveto2;
              elsif i=1 then
                count2<=count2+1;
                i<=0;
                state<=waitserve;
               else 
                i<=i-1;
              end if;
          when allow2hit=>      --进程处于允许乙击球状态
              if hit2='1'then
                i<=i-1;
                state<=ballmoveto1;
              elsif i=8 then
                count1<=count1+1;
                i<=0;
                state<=waitserve;
              else  
                i<=i+1;
            end if;
        end case;
      end if;
    end if;
end process;
light<="10000000"when(i=1) else                --进程处i信号控制发光二极管的亮暗
"01000000" when(i=2) else
"00100000" when(i=3) else
"00010000" when(i=4) else
"00001000" when(i=5) else
"00000100" when(i=6) else
"00000010" when(i=7) else
"00000001" when(i=8) else
"00000000";                                    --其他情况所有发光二极管都暗
u0:mydecoder port map(count1,score11,score12); --用七段译码器显示甲的分数
u1:mydecoder port map(count2,score21,score22); --用七段译码器显示乙的分数
end game;

以下程序是调用的mydecoder程序,说明的是用七段数码管显示分数。。

 

library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
entity mydecoder is
port(binaryin:in std_logic_vector(1 to 5);    --5位二进制码的输入端口
bcdout1:out std_logic_vector(1 to 7);         --七段译码器输出端口
bcdout2:out std_logic_vector(1 to 7));
end mydecoder;
architecture m of mydecoder is
signal tembinaryin:std_logic_vector(1 to 5);
begin
process(binaryin)
  begin
    tembinaryin<=binaryin;
    case tembinaryin is                      
      when"00000"=>bcdout1<="1111110";bcdout2<="1111110";  --把0到9的5位二进制码转换成七段译码
      when"00001"=>bcdout1<="1111110";bcdout2<="0110000";
      when"00010"=>bcdout1<="1111110";bcdout2<="1101101";
      when"00011"=>bcdout1<="1111110";bcdout2<="1111001";
      when"00100"=>bcdout1<="1111110";bcdout2<="0110011";
      when"00101"=>bcdout1<="1111110";bcdout2<="1011011";
      when"00110"=>bcdout1<="1111110";bcdout2<="1011111";
      when"00111"=>bcdout1<="1111110";bcdout2<="1110000";
      when"01000"=>bcdout1<="1111110";bcdout2<="1111111";
      when"01001"=>bcdout1<="1111110";bcdout2<="1111011";
      when"01010"=>bcdout1<="0110000";bcdout2<="1111110";--把10到19的5位二进制码转换成七段译码
      when"01011"=>bcdout1<="0110000";bcdout2<="0110000";
      when"01100"=>bcdout1<="0110000";bcdout2<="1101101";
      when"01101"=>bcdout1<="0110000";bcdout2<="1111001";
      when"01110"=>bcdout1<="0110000";bcdout2<="0110011";
      when"01111"=>bcdout1<="0110000";bcdout2<="1011011";
      when"10000"=>bcdout1<="0110000";bcdout2<="1011111";
      when"10001"=>bcdout1<="0110000";bcdout2<="1110000";
      when"10010"=>bcdout1<="0110000";bcdout2<="1111111"
      when"10011"=>bcdout1<="0110000";bcdout2<="1111011";
      when"10100"=>bcdout1<="1101101";bcdout2<="1111110";--把20到21的5位二进制码转换成七段译码
      when"10101"=>bcdout1<="1101101";bcdout2<="0110000";
      when others=>bcdout1<="1101101";bcdout2<="1111110";--如果5位二进制码不在0到21范围内,那么两个七段译码器都显示0
    end case;
end process;
end m;

此帖出自FPGA/CPLD论坛

最新回复

仿真击球出现啥问题哦?  详情 回复 发表于 2011-11-29 08:06
点赞 关注
 

回复
举报

6892

帖子

0

TA的资源

五彩晶圆(高级)

沙发
 

会出现啥问题?能具体描述吗

此帖出自FPGA/CPLD论坛
个人签名一个为理想不懈前进的人,一个永不言败人!
http://shop57496282.taobao.com/
欢迎光临网上店铺!
 
 

回复

2734

帖子

0

TA的资源

裸片初长成(初级)

板凳
 
各位大虾,我有一程序描述的是乒乓球游戏机,可是当球处于刚过网的时候,即i=4或5时,仿真击球会出现问题,还请大虾们能够解释下,多谢了。。
你的仿真击球会出现什么问题,程序出错没,会不会是时序没有对准呢
此帖出自FPGA/CPLD论坛
个人签名我爱电子!
 
 
 

回复

6892

帖子

0

TA的资源

五彩晶圆(高级)

4
 

仿真击球出现啥问题哦?

此帖出自FPGA/CPLD论坛
个人签名一个为理想不懈前进的人,一个永不言败人!
http://shop57496282.taobao.com/
欢迎光临网上店铺!
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/10 下一条
【干货上新】电源解决方案和技术第二趴 | DigiKey 应用探索站
当月好物、电源技术资源、特色活动、DigiKey在线实用工具,干货多多~

查看 »

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

 
机器人开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网 11

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表