搜索资源列表
PengPeng1
- 这是是我前几天仿写的小游戏《看谁守得住》的源代码,有详细的注释,代码短,但涉及到windows实时网络游戏的诸多基本元素,包括多线程、套接字、双缓冲、边界检查、3D视角等,程序可扩展性好,对程序中小球个数NBALL重新赋值(比如改成6)可以方便的扩展成网络桌球,对大球个数修改可以方便的扩展成网络足球(需要修改碰撞判断条件),也可以很方便的移植为调试OpenGL、D3D程序的平台(替换显示类C3DConvertor),是一个值得参考的入门级实时3D游戏编程框架 游戏支持单机和双人局域网两
184
- 模拟扫雷游戏,模仿windows自带的扫雷游戏设计的。功能与windows的扫雷游戏相当,通过图形模式下绘制各种窗口,操作控制鼠标进行游戏。
Win32Tetris_C
- 原创Windows入门程序,直接使用Windows API编写。几乎包含了Widows入门会碰到的所有知识,像窗口、消息、菜单、工具栏、资源、对话框、计时器、自绘按钮、GDI位图操作、Windows目录操作、INI文件操作等等,拿来练下手应该会收获不少。带详细注释的源代码,开发环境是VC6,希望对你有所帮助。-Original Windows entry procedures, the preparation of the direct use of Windows API. Widows en
compareNumber
- 数字比大小游戏,J2EE调试编译!定义了各类窗口等。-Compared with the size of the game, J2EE debug compile! Defines the various types of windows.
moreNewMaze
- MFC做的迷宫小游戏,可以自己设计地图进行游戏,游戏窗口风格模仿windows扫雷-MFC to do the maze game, can design their own maps for the game, the game window style to imitate windows mine
running-labyrighth
- 自己编写的windows 窗口程序---勇闯迷宫,可以运行,有源代码和编译后的文件,很适合初学者-this program made by myself,window way procedure-brave rush maze, can circulate, have source code and edit and translate behind of document, suit raw recruit very much
NewMineSweeper
- 控制台窗口下的扫雷游戏,支持鼠标点击、本地用户登陆、计时、保存游戏、英雄榜等功能。不仅设计了传统模式的扫雷,还设计了更具挑战性的“高级模式”,代码总长度2400~2500行。 操作说明:左键、右键单击:同WINDOWS扫雷;鼠标中键单击:排雷(相当于WINDOWS扫雷中的排雷功能,但排雷逻辑不同)。 本游戏适合作为C语言学习的大作业。-Minesweeping games in the console window, support for mouse clicks, the local
Skyblue_Mine
- 在visual C++中运行的扫雷游戏,与windows系统自带的几乎一样,采用MFC窗口设计-Running in visual C++ the minesweeper game, windows system comes with almost the same design using MFC window
saolei_40691
- windows 上的扫雷游戏,基于C#实现的窗口化软件-the game of saolei in windows
Pacman-game
- 吃豆子游戏。 Pacman是一款动作休闲游戏。使用Windows API,依照面向对象的设计方法。包括Windows应用程序、地图类的设计、数据更新、绘图、窗口设计等-Pacman game
You-can-double-duel-VC-PP-Go-program
- 可以双人对决的VC++围棋程序,游戏打开后可以选择适合15、17寸液晶的窗口,下棋速度很快。-You can double duel VC++ Go program, after the game you can choose to open the windows 15, 17-inch LCD, board games fast.
Tetris
- c语言编写。模拟经典的俄罗斯方块游戏。能在Windows窗口运行。-c language. Simulation of the classic Tetris game. You can run Windows window.
Cat-and-mouse
- 自创的一个猫抓老鼠的小游戏。c语言编写。能在在Windows窗口运行。s表示老鼠,M表示猫。老鼠按随机路线窜动,玩家用键操纵猫的移动。当老鼠看见猫时会相反方向逃跑,遇到墙口时马上转弯。-Own a cat and mouse game. c language. It can run on Windows window. s represents mice, M is the cat. Mice were randomly route ran, the player with the key mo
tictactoe
- 此代码是如何用C++语言实现一个简单的井字棋游戏,并且利用不同的技术在不同的用户界面上实现它。游戏的逻辑部分只用标准C++写了一次,并且使用了两种截然不同的技术用它来构建了2个应用:Win32 API,我不得不明确的指定一些工作例如创建一个窗口并且绘制它,还有就是使用XAML的Windows Runtime,这里framework为我做了大量的工作,是我能够专注于游戏逻辑的实现(并且当我需要去设计UI的时候,我们不仅仅只有手动声明这一种方法,不仅可以在XAML中,也可以在code behind里