• 大小: 2.22MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-09
  • 语言: C/C++
  • 标签: 弹弹堂  源码  

资源简介

该项目是基于FunCode平台,运用C++语言开发的一个游戏。玩家通过控制键盘上的按键来发射炮弹击中右边的目标,直到目标被击中直至摧毁。

资源截图

代码片段和文件信息

//---------------------------------------------------------------------------------------------
// Torque Game Builder
// Copyright (C) GarageGames.com Inc.
//---------------------------------------------------------------------------------------------


/// Player Initialization Procedure
/// 
function onstart()
{   
}

function onExit()
{
}

//---------------------------------------------------------------------------------------------
// Load the paths we need access to
//---------------------------------------------------------------------------------------------
function loadPath( %path )
{
   setModPaths( getModPaths() @ “;“ @ %path );
   exec(%path @ “/main.cs“);

}

//---------------------------------------------
// Do some bootstrap voodoo to get the game to 
// the initializeProject phase of loading and 
// pass off to the user
//---------------------------------------------

// Output a console log
setLogMode(6);

loadPath( “common“ );

loadPath( “game“ );

onstart();

// Initialized
echo(“\nFunCode (“ @ getT2DVersion() @ “) initialized...“);

if( !isFunction( “initializeProject“ ) || !isFunction( “_initializeProject“ ) )
{
   messageBox( “Game Startup Error“ “‘initializeProject‘ function could not be found.“ @
               “\nThis could indicate a bad or corrupt common directory for your game.“ @
               “\n\nThe Game will now shutdown because it cannot properly function“ “Ok“ “MIStop“ );
   quit();
}

_initializeProject();

// Startup the project
initializeProject();



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-07-02 13:48  源程序代码\
     目录           0  2014-07-02 13:48  源程序代码\Bin\
     文件      159846  2014-06-27 03:30  源程序代码\Bin\Game.exe
     文件      576512  2012-12-27 17:36  源程序代码\Bin\Game.pdb
     目录           0  2014-07-02 13:48  源程序代码\Bin\common\
     文件         498  2014-06-24 23:15  源程序代码\Bin\common\commonConfig.xml
     目录           0  2014-07-02 13:48  源程序代码\Bin\common\data\
     目录           0  2017-05-08 15:27  源程序代码\Bin\common\data\audio\
     目录           0  2014-07-02 13:48  源程序代码\Bin\common\data\fonts\
     文件       11766  2014-06-24 23:15  源程序代码\Bin\common\data\fonts\Arial 12 (ansi).uft
     文件       11219  2014-06-24 23:15  源程序代码\Bin\common\data\fonts\Arial 14 (ansi).uft
     文件       70218  2014-06-24 23:15  源程序代码\Bin\common\data\fonts\Arial 80 (ansi).uft
     文件       13875  2014-06-24 23:15  源程序代码\Bin\common\data\fonts\Arial Bold 20 (ansi).uft
     文件       11290  2014-06-24 23:15  源程序代码\Bin\common\data\fonts\Lucida Console 12 (ansi).uft
     目录           0  2014-06-30 13:07  源程序代码\Bin\common\data\help\
     文件         365  2011-09-19 11:00  源程序代码\Bin\common\data\help\2. License.hfl
     目录           0  2014-07-02 13:48  源程序代码\Bin\common\gamescripts\
     文件        9458  2011-09-19 11:00  源程序代码\Bin\common\gamescripts\align.cs
     文件        8724  2014-06-16 14:13  源程序代码\Bin\common\gamescripts\align.cs.dso
     文件        2350  2011-09-19 11:00  源程序代码\Bin\common\gamescripts\audio.cs
     文件        1566  2014-06-16 14:13  源程序代码\Bin\common\gamescripts\audio.cs.dso
     文件        1581  2011-09-19 11:00  源程序代码\Bin\common\gamescripts\canvas.cs
     文件         836  2014-06-16 14:13  源程序代码\Bin\common\gamescripts\canvas.cs.dso
     目录           0  2014-07-02 13:48  源程序代码\Bin\common\gamescripts\client\
     文件        4671  2011-09-19 11:00  源程序代码\Bin\common\gamescripts\client\chatClient.cs
     文件        1773  2011-09-19 11:00  源程序代码\Bin\common\gamescripts\client\client.cs
     文件        1610  2011-09-19 11:00  源程序代码\Bin\common\gamescripts\client\message.cs
     文件        4194  2011-09-19 11:00  源程序代码\Bin\common\gamescripts\client\serverConnection.cs
     文件        5447  2011-09-19 11:00  源程序代码\Bin\common\gamescripts\common.cs
     文件        3911  2014-06-16 14:13  源程序代码\Bin\common\gamescripts\common.cs.dso
     文件        3022  2011-09-19 11:00  源程序代码\Bin\common\gamescripts\cursor.cs
............此处省略178个文件信息

评论

共有 条评论