-
一个上海的地图,各种各样的JPG可以作为GIS的原始数据
一个上海地图,jpg各式的,可以用来作为gis处理的原始数据-a Shanghai maps, a variety of jpg can be used as a gis of the original data
- 2022-11-25 20:10:03下载
- 积分:1
-
一个效果非常好的24,16bit真彩位图转化成256彩色或黑白位图的演示程序代码,其中调用了一个动态连接库。
作者邮箱:akiy@eyou.com...
一个效果非常好的24,16bit真彩位图转化成256彩色或黑白位图的演示程序代码,其中调用了一个动态连接库。
作者邮箱:akiy@eyou.com
-a very good effect per bit color bitmap into 256 color or black and white bitmap demo code, which called a dynamic link library. Author mail : akiy@eyou.com
- 2023-07-10 18:20:03下载
- 积分:1
-
对于游戏的变化,内存数据的分析,属性数据的变化,。
游戏修改器,对内存数据进行分析,得到变化的属性数据,对属性数据进行修改。-changes for the game, the memory data analysis, changes in the attribute data, attribute data to make revisions.
- 2022-12-06 05:00:03下载
- 积分:1
-
C++开发的推箱子游戏
1.类的划分
Cdraw类
绘画加载地图(包括围墙、人、箱子等等)
Cman类
是否完成(过关)
即时更新...
C++开发的推箱子游戏
1.类的划分
Cdraw类
绘画加载地图(包括围墙、人、箱子等等)
Cman类
是否完成(过关)
即时更新地图
2.设计思想
从文件map.txt里读取地图信息,然后通过Cdraw类加载地图,通过keydown事件调用Cman里的重载函数updatemap,
单参数updateMap(UINT nChar)是用于更改当前小人以及箱子的坐标,记录下来后传给updateMap(int x1, int y1, int x2, int y2, int x3, int y3)
从而改变地图。-C development Tuixiangzi a game. Class division Cdraw painting category loaded maps (including the wall, boxes, etc.) if the class completed Cman (clearance) updated maps 2. Design ideas from the paper map.txt Lane read map information, then pass Cdraw Class Loading maps, Calling the incident through keydown Cman Lane updatemap of overloading functions, updateMap single parameter (UINT nChar) is used to change the current villains and the coordinates of the boxes, After record pass updateMap (int x1, y1 int, int x2, int y2, x3 int, int y3), thus changing map.
- 2022-01-25 13:53:04下载
- 积分:1
-
将电脑上的屏幕信息保存于磁盘的C语言源程序代码
将电脑上的屏幕信息保存于磁盘的C语言源程序代码-will screen on the computer disk information stored at the C language source code
- 2023-07-03 02:55:03下载
- 积分:1
-
关于sdram学习的方法和心得,属于菜鸟进阶型资料
关于sdram学习的方法和心得,属于菜鸟进阶型资料-About sdram learning methods and experiences, advanced type of information belongs to rookie
- 2022-12-06 02:25:03下载
- 积分:1
-
某公司的生产销售管理系统源代码.vc++环境.access数据库,需要设置数据源.是相当专业的行业软件.要下的动作快!...
某公司的生产销售管理系统源代码.vc++环境.access数据库,需要设置数据源.是相当专业的行业软件.要下的动作快!-a company in the production and sale of the source code management system. Vc environment. Access databases, the need for data sources. is a professional software industry. to the fast action!
- 2022-02-15 20:53:45下载
- 积分:1
-
这是我大一第二个学期期末制作的软件工程课程设计,逻辑上没有什么太复杂的, 当时学习的东西不是很多,用了链表,其中使用了DOS下汉字直显,无需汉字系统 支持,使用...
这是我大一第二个学期期末制作的软件工程课程设计,逻辑上没有什么太复杂的, 当时学习的东西不是很多,用了链表,其中使用了DOS下汉字直显,无需汉字系统 支持,使用了文件操作,就当时对c语言的联系:)-This my second semester freshman year ending production of software engineering curriculum design, logic, nothing too complicated, not learning a lot of things, the use of linked lists, which use Chinese characters straight DOS significantly without Chinese support system, the use of paper operations, on the prevailing language of c contact :)
- 2022-03-10 02:50:19下载
- 积分:1
-
Linux的PNP
Linux PNP-ISA 1.0规范,嵌入式的兄弟也许用得着-Linux PNP- ISA 1.0 norms, the brothers Embedded perhaps worthwhile
- 2022-04-10 00:53:18下载
- 积分:1
-
CoStream 无缓存 Pipe Stream
翻译 maninwest@Codeforge 作者:Sergey Nozhenko@CodeProject介绍:CoStream 是的 PipeStream 无缓存替代选择。背景在生产者/消费者模式下,如果我们知道一个消费者确定要读取stream 读到结束或者如果不能读到结束就处理,那么同步stream 就不需要维护自己的内部缓存,完全依赖于 Read 方法调用者的缓存。在Read 方法中,CoStream 保存到目标缓存的引用并等待,直至完成。而 write 方法从源缓存中复制数据到目标缓存,会给读取者发送信号缓存已准备就绪或者需要等待期 Read 调用(如果来源缓存中有未消耗的数据剩下或者返回到Writer 调用者)。使用代码CoStream 不能在单个话题中使用。应该至少有两个,读取和写入话题。两者都需要关闭(或处理)stream,一边对方可以继续到结束。测试程序在 XmlDocument 中加载了一些 xml 文件。然后将其写入到 CoStream 的实例Static CoStream costream = new TestCoStream();
static string outpath;
static void Main(string[] args)
{
// ...
XmlDocument doc = new XmlDocument();
doc.Load(args[0]);
outpath = args[1];
var reading_thread = new Thread(ReaderBody);
reading_thread.Start();
using (var pipe = XmlWriter.Create(costream, new XmlWriterSettings { CloseOutput = true }))
doc.Save(pipe);
reading_thre
- 2022-03-17 17:34:17下载
- 积分:1