======================================================================== MICROSOFT FOUNDATION CLASS LIBRARY : fir ======================================================================== AppWizard has created this fir application for you. This application not only demonstrates the basics of using the Microsoft Foundation classes but is also a starting point for writing your application. This file contains a summary of what you will find in each of the files that make up your fir application. fir.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally. fir.h This is the main header file for the application. It includes other project specific headers (including Resource.h) and declares the CFirApp application class. fir.cpp This is the main application source file that contains the application class CFirApp. fir.rc This is a listing of all of the Microsoft Windows resources that the program uses. It includes the icons, bitmaps, and cursors that are stored in the RES subdirectory. This file can be directly edited in Microsoft Visual C++. fir.clw This file contains information used by ClassWizard to edit existing classes or add new classes. ClassWizard also uses this file to store information needed to create and edit message maps and dialog data maps and to create prototype member functions. res\fir.ico This is an icon file, which is used as the application's icon. This icon is included by the main resource file fir.rc. res\fir.rc2 This file contains resources that are not edited by Microsoft Visual C++. You should place all resources not editable by the resource editor in this file. ///////////////////////////////////////////////////////////////////////////// For the main frame window: MainFrm.h,
2020-01-03 11:26:37 6.57MB 人工智能 alpha-beta 剪枝法 五子棋
1
网路五子棋是一个典型的网路对弈棋牌类游戏,它由网路五子棋服务器端和网路五子棋客户端两部分组成。  网路五子棋服务器端 网路五子棋服务器端主要包括服务器主界面和服务器设置两部分。  网路五子棋客户端 网路五子棋客户端主要包括客户端主界面和设置服务器信息两部分。
2020-01-03 11:23:58 6.12MB C++ 网络 五子棋 源码
1
package com.example.wzq; import java.util.ArrayList; import java.util.List; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.TimeUnit; import com.example.wzq.MyInfo.MyInfoActivity; import com.example.wzq.gameview.WzqGame; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.os.Parcelable; import android.app.Activity; import android.content.Intent; import android.graphics.Color; import android.support.v4.view.PagerAdapter; import android.support.v4.view.ViewPager; import android.support.v4.view.ViewPager.OnPageChangeListener; import android.view.KeyEvent; import android.view.Menu; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.ImageView; import android.widget.TextView; import android.widget.ImageView.ScaleType; import android.widget.Toast; public class MainActivity extends Activity implements OnClickListener{ private ViewPager viewPager; private List imageViews; //滑动的图片集合 private String[] titles;//图片标题 private int[] imageResId;//图片ID private List dots; //图片标题正文的那些点集合 private TextView tv_title; private int currentItem = 0;//当前图片的索引号 Intent intent = new Intent(); private ScheduledExecutorService scheduledExecutorService; //切换到当前显示的图片 private Handler handler = new Handler(){ @Override public void handleMessage(Message msg) { viewPager.setCurrentItem(currentItem); } }; //定义两种颜色设置 static final int COLOR1 = Color.parseColor("#787878"); static final int COLOR2 = Color.parseColor("#ffffff"); //定义四个按钮切换按钮 private Button start_btn=null; private Button bluetooth_btn=null; private Button myinfo_btn=null; private Button finish_btn=null; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //生成滚动图片 initImageFlow(); View view_
2020-01-03 11:21:12 8.95MB android 五子棋源码
1
内容索引:JAVA源码,游戏娱乐,五子棋   基于GUI的Java五子棋游戏源码,可人机对战,用java swing做的,运行时需要修改图片的路径。   制作思路:   用按钮做棋子,用图片填充每个按钮。   设置棋盘为24*24的,五子棋FiveChessGame类,继承了JFrame,并且添加了时间监听,五子棋的棋子chess,用JButton表示,五子棋棋子chess对应的棋子标识,用于标记棋子的状态。 1表示黑棋,-1表示白棋,默认0表示无棋子,点击棋子时设置棋子的图标setOnChessIcon。 根据判断该位置的棋子是否有棋子,和棋子颜色设置棋子图标   测试棋子的方法showChess。用于将chessInt数组内容打印到控制台,以便观看。
2019-12-21 22:24:22 45KB java web GUI
1
闲得无聊写了一个五子棋的小游戏 可以两人互相玩一人走一步 还没有加上AI 有兴趣的朋友看一看哈~~
2019-12-21 22:07:28 642KB android 五子棋 源码
1
以批处理来调度运行 能进行网络联机 禁手选择 先手选择
1
安卓五子棋源码 可实现人机对战 反应可以 亲测能用 解压后可直接导入IDEA AS
2019-12-21 21:38:05 14.8MB 安卓APP 五子棋
1
自己写的五子棋,有创新点,界面自己P的图.zip
2019-12-21 21:30:18 454KB JAVA 课程设计
1
非常值得的五子棋源代码 VC五子棋源代码 想要的速度下哦 多线程 VC五子棋源代码 想要的速度下哦 多线程
2019-12-21 21:02:39 8.43MB 五子棋源码
1
此资源包含了本人在2011.12之前搜索到的所有代码,当然,只搜了百度谷歌的前几页。 另:小弟觉得这些代码弱爆了,所以开了专版来教学五子棋游戏编程, 有不足的请立即指正! 这些教学汇总在小弟上传的另一个资源《C++编程 之 5分钟做出一个游戏 -- 五子棋源码》中~
2019-12-21 20:30:34 11.84MB 五子棋源码 MFC VC C++
1