非常好的扫雷项目,注解清晰。用跨平台的工具qt 实现。 自己写的,项目有详细注释。
2019-12-21 20:09:19 2.04MB Qt linux 扫雷
1
简易版扫雷程序代码 public class MineSweeperGame2 extends Application { Cell[][] cell; int totalMines=0; int markBomb=0; //总的地雷数量,简单会有10个,一般会有40个,困难99个 int showMines=10; String s=String.valueOf(showMines); Label tips=new Label("Game is running!"); Label showMineNum=new Label("mines: "+s); public void start(Stage primaryStage){ Stage startStage=new Stage(); //选择按钮的界面 Button startButton=new Button("RESTART"); Button chooseeasy=new Button(" EASY (10mines)"); Button choosenormal=new Button("NORMAL(40mines)"); Button choosehard=new Button(" HARD(99mines)"); BorderPane primaryPane=new BorderPane(); HBox startPane=new HBox(15); StackPane topButtonPane=new StackPane(startButton); StackPane topButtonPane2=new StackPane(showMineNum); StackPane buttomPane=new StackPane(tips); HBox topPane=new HBox(50); topPane.getChildren().addAll(topButtonPane,topButtonPane2); primaryPane.setTop(topPane); tips.setStyle("-fx-border-color:red;-fx-background-color:white;"); showMineNum.setStyle("-fx-border-color:black"); primaryPane.setBottom(buttomPane); buttomPane.setPadding(new Insets(15,15,15,15)); topPane.setPadding(new Insets(15,15,15,15)); startPane.setPadding(new Insets(15,15,15,15)); startPane.getChildren().add(chooseeasy); startPane.getChildren().add(choosenormal);
2019-12-21 20:08:49 12KB java
1
利用c#开发扫雷游戏,内附详解和完整代码,有需要做游戏程序的可以参考
2019-12-21 20:07:02 110KB c# 扫雷
1
小游戏,可用于课程设计!基本无界面,实现扫雷的基本功能!界面为16*16 40个雷
2019-12-21 20:02:53 186KB 扫雷 vb.net
1
C语言实现的控制台小游戏,使用了Windows控制台相关的API进行了界面的美化,可以使用上下左右按键进行位置控制并进行相关操作:标记雷区、保留疑问、翻开格子,并实现了类似WIN上扫雷游戏的双击功能,即在已经打开的格子上再次进行打开操作时,会根据周边标记数量来决定是否自动继续翻开周边安全区。
2019-12-21 20:00:32 57KB C语言 控制台 扫雷 小游戏
1
此程序完全用AS3写的,使用时,只需将此zip包导入到Flash Builder中即可;
2019-12-21 19:59:49 2.73MB Flash AS3 扫雷 源文件
1
win32汇编实现扫雷,带图片资源于文件夹res中,基本实现windows自带扫雷功能,包括声音
2019-12-21 19:59:49 243KB 扫雷 汇编
1
Python WxPython开源扫雷游戏PyMine新版1.2 有少量API修改。 本例为开源扫雷游戏PyMine 使用Python语言和WxPython UI框架 本例移植自本人开源例程JMine 请在程序所在目录使用python PyMine.py启动例程 需要先安装Python 2.7和wxPython框架
2019-12-21 19:58:49 31KB Python WxPython 开源扫雷游戏 PyMine
1
放在MyEclipse和eclipse里玩的小游戏(如:扫雷等)
1
扫雷游戏的c++源码实现,用qt运行。。。。。。。。。。。
2019-12-21 19:56:47 453B c++
1