电脑走迷宫程序,包括等高图制作、坐标定位、走弧形弯等。
2022-10-19 22:32:22 11KB 电脑鼠走迷宫
1
基于IEEE电脑智能算法研究.本算法可完成电脑对迷宫的完全搜索,对连续拐弯也做了研究,并且可以在搜索后找出最短路径冲刺。
2022-10-19 22:27:57 1021KB 电脑鼠
1
Android游戏设计打地,能实现简单的游戏基本操作。是模仿大家熟悉的打地小游戏所设计。
2022-10-18 21:31:40 3.57MB Android
1
使用C#写的打地小游戏,多用于基础代码实现,功能简单使用
2022-10-18 09:04:27 152KB 打地鼠
1
好用的windows键录制工具,工具只有几十k,非常小巧易用
2022-10-12 14:00:49 36KB tinytask 脚本录制 键鼠录制
1
把电脑走迷宫的过程及如何实现写得很详细。
2022-09-29 20:39:05 433KB 算法
1
Creator打地游戏hitmouse.zip // Learn cc.Class: // - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/class.html // - [English] http://docs.cocos2d-x.org/creator/manual/en/scripting/class.html // Learn Attribute: // - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/reference/attributes.html // - [English] http://docs.cocos2d-x.org/creator/manual/en/scripting/reference/attributes.html // Learn life-cycle callbacks: // - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/life-cycle-callbacks.html // - [English] https://www.cocos2d-x.org/docs/creator/manual/en/scripting/life-cycle-callbacks.html cc.Class({ extends: cc.Component, properties: { mouse: [cc.Node], hammer: cc.Node, txtCount: cc.Label, }, // LIFE-CYCLE CALLBACKS: onLoad () { var manager = cc.director.getCollisionManager(); manager.enabled = true; this.count = 0; this.txtCount.string = this.count; }, start () { cc.director.getScheduler().schedule(this.logic, this, 0.5, false); this.node.on(cc.Node.EventType.TOUCH_START, function(event){ for(let i = 0; i < this.mouse.length; i++){ if(this.mouse[i].opacity == 0){ continue; } let parent = this.mouse[i].parent; let maskPos = parent.parent.convertToWorldSpaceAR(parent.position); let maskRect = cc.rect(maskPos.x - parent.width / 2 , maskPos.y , parent.width, parent.height); let mouse = this.mouse[i]; let mousePos = parent.convertToWorldSpaceAR(mouse.position); let mousRect = cc.rect(mousePos.x - mouse.width / 2, mousePos.y - mouse.height / 2, mouse.width, mouse.height); let mixRect = new cc.Rect(); maskRect.intersection(mixRect, mousRect); if(mixRect.contains(event.getLocation())){ this.hammer.position = parent.position; this.hammer.active = true; this.count++; this.txtCount.string = this.count; break; } } }, this); this.node.on(cc.Node.EventType.TOUCH_END, function(event){ this.hammer.active = false; }, this); }, logic(){ let index = Math.floor(Math.random() * 9); cc.log(`index:${index}`); if(index < 0 || index >= this.mouse.length){ return; } this.mouse[index].getComponent('mouse').appear(); }, // update (dt) {}, });
2022-09-23 16:05:12 468KB Creator打地鼠
1
可以实现电脑连续转弯,包含电脑比赛时所用的代码。
2022-09-14 18:21:44 283KB 连续转弯
1
本程序是我们小组集体参加电脑比赛的完整参赛代码,内付Maze主函数的完整流程图!
2022-09-14 18:20:45 181KB IEEE 电脑鼠走迷宫
1
电脑算法 电脑算法 电脑算电脑算法法电脑算法 电脑算法电脑算法电脑算法电脑算电脑算法法电脑算法电脑算法电脑算法
2022-09-14 18:20:19 415KB 电脑鼠 算法
1