• 大小: 1.68M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-31
  • 语言: 其他
  • 标签: 俄罗斯  Qt  图标  

资源简介

进入登陆游戏主界面,点击XX游戏图标时弹出XX游戏,游戏图标按住左键可以移动,双击进入,点击右键退出。
潜艇游戏,俄罗斯方块游戏,人机交互的球球游戏

资源截图

代码片段和文件信息


//Own
#include “animationmanager.h“

//Qt
#include 
#include 

// the universe‘s only animation manager
AnimationManager *AnimationManager::instance = 0;

AnimationManager::AnimationManager()
{
}

AnimationManager *AnimationManager::self()
{
    if (!instance)
        instance = new AnimationManager;
    return instance;
}

void AnimationManager::registerAnimation(QAbstractAnimation *anim)
{
    Qobject::connect(anim SIGNAL(destroyed(Qobject*)) this SLOT(unregisterAnimation_helper(Qobject*)));
    animations.append(anim);
}

void AnimationManager::unregisterAnimation_helper(Qobject *obj)
{
    unregisterAnimation(static_cast(obj));
}

void AnimationManager::unregisterAnimation(QAbstractAnima

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-12-08 20:49  game\
     文件       60432  2019-11-18 09:09  game\all.svg
     文件        1457  2019-11-21 19:27  game\animationmanager.cpp
     文件         696  2019-11-21 19:27  game\animationmanager.h
     目录           0  2019-11-21 21:36  game\big\
     文件       48858  2019-11-18 09:09  game\big\background.png
     文件        5198  2019-11-18 09:09  game\big\boat.png
     文件         760  2019-11-18 09:09  game\big\bomb.png
     目录           0  2019-11-21 21:36  game\big\explosion\
     目录           0  2019-11-21 21:36  game\big\explosion\boat\
     文件        5760  2019-11-18 09:09  game\big\explosion\boat\step1.png
     文件        9976  2019-11-18 09:09  game\big\explosion\boat\step2.png
     文件       12411  2019-11-18 09:09  game\big\explosion\boat\step3.png
     文件       15438  2019-11-18 09:09  game\big\explosion\boat\step4.png
     目录           0  2019-11-21 21:36  game\big\explosion\submarine\
     文件        3354  2019-11-18 09:09  game\big\explosion\submarine\step1.png
     文件        6205  2019-11-18 09:09  game\big\explosion\submarine\step2.png
     文件        6678  2019-11-18 09:09  game\big\explosion\submarine\step3.png
     文件        6666  2019-11-18 09:09  game\big\explosion\submarine\step4.png
     文件        3202  2019-11-18 09:09  game\big\submarine.png
     文件         575  2019-11-18 09:09  game\big\surface.png
     文件         951  2019-11-18 09:09  game\big\torpedo.png
     文件        8426  2019-11-21 19:28  game\boat.cpp
     文件        1061  2019-11-21 19:28  game\boat.h
     文件       11949  2019-11-18 09:09  game\boat.svg
     文件        4823  2019-11-21 19:28  game\boat_p.h
     文件        2593  2019-11-21 19:29  game\bomb.cpp
     文件         443  2019-11-21 19:29  game\bomb.h
     文件        1290  2019-11-18 09:09  game\data.xml
     文件        2331  2019-11-21 19:18  game\downwidget.cpp
     文件         887  2019-11-21 19:17  game\downwidget.h
............此处省略112个文件信息

评论

共有 条评论