坦克游戏开发

本游戏是参照教学视频而开发的。

程序代码如下:

坦克游戏开发_第1张图片

游戏整体代码打包如附件。

游戏运行界面为:

坦克游戏开发_第2张图片

地图编辑界面:

坦克游戏开发_第3张图片

游戏主界面:

坦克游戏开发_第4张图片

遇见问题:

在程序开发过程中,需要在程序中添加声音,这里需要用到Microsoft.DirectX.dll和Microsoft.DirectX.DirectSound.dll这两个文件,这两个文件见附件。添加之后,运行时出现如下问题:

坦克游戏开发_第5张图片

解决方法为:

编辑Tank解决方案下的app.conf文件,其原始内容为:
<?xml version="1.0"?>
<configuration>
<startup>
  <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>
</configuration>



修改为:
<?xml version="1.0"?>
<configuration>
<startup useLegacyV2RuntimeActivationPolicy="true">
  <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>
</configuration>



这样游戏就可以正常运行,并可以听见声音了。

你可能感兴趣的:(游戏开发)