antv g6 图形库 出租车模拟

2023-12-21 08:10

本文主要是介绍antv g6 图形库 出租车模拟,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

原文链接: antv g6 图形库 出租车模拟

上一篇: echartjs 绘制 圆环 排版

下一篇: mysql 安装 配置

https://antv.alipay.com/zh-cn/g6/1.x/index.html

效果

注意,删除节点时,会将连接的边一起删除。。。。。

修改边的话,先修改边在删除节点

g6 不支持(或没找到)可以使用svg或图片改变节点样式的方法。。。。

出租车

绿色表示等待

黄色表示去接人

蓝色表示将人送网目的地

橙色表示当前地点

黑色表示目的地点

people

class People {// 当前位置和目标位置,0,自由,1,等待车到来constructor(id, x, y, dx, dy,state=0) {this.id = idthis.x = xthis.y = ythis.dx = dxthis.dy = dythis.state=state}move(s = 1) {if ((this.dx - this.x) != 0)this.x += (this.dx - this.x) > 0 ? 1 : -1if ((this.dy - this.y) != 0)this.y += (this.dy - this.y) > 0 ? 1 : -1}
}export default People

car

class Car {// 位置和状态 0 空车,1接单,2载人constructor(id, x, y, dx = 0, dy = 0, state = 0) {this.id = idthis.x = xthis.y = ythis.dx = dxthis.dy = dythis.state = state}move() {if((this.dx - this.x)!=0)this.x +=  (this.dx - this.x) > 0 ? 1 : -1if((this.dy - this.y) != 0)this.y += (this.dy - this.y) > 0 ? 1 : -1}}export default Car

game

<template><div class="game"><div class="vis" id="vis"></div><div class="control"><button @click="add_car">add car</button><button @click="add_people">add people</button></div></div>
</template><script>import G6 from '@antv/g6';import Car from "../model/Car";import People from "../model/People";let width = 800;let height = 800;let colors = ['green', 'yellow', 'skyblue', 'orange', 'black']function dis(a, b) {return ((a.x - b.x) ** 2 + (a.y - b.y) ** 2) ** 0.5}export default {name: "Game2",data() {return {cars: [],peoples: [],graph: {},}},methods: {add_car() {let c = new Car(this.cars.length,parseInt(Math.random() * width),parseInt(Math.random() * height))this.cars.push(c)this.graph.add('node', {id: 'c' + c.id,label: 'c' + c.id,x: c.x,y: c.y,color: colors[c.state],})this.fit()let minp = nulllet mindis = 99999999999for (let p of this.peoples) {if (p.state != 0)continuelet d = dis(p, c)if (d < mindis && !p.car) {minp = pmindis = d}}if (!minp)returnminp.car = cminp.state = 1c.people = minpc.state = 1c.dx = minp.xc.dy = minp.ythis.graph.update('c' + c.id, {color: colors[c.state]})},add_people() {let p = new People(this.peoples.length,parseInt(Math.random() * width),parseInt(Math.random() * height),parseInt(Math.random() * width),parseInt(Math.random() * height),)this.peoples.push(p)this.graph.add('node', {id: 'p' + p.id,label: 'p' + p.id,x: p.x,y: p.y,color: colors['3'],})this.graph.add('node', {id: 'd' + p.id,label: 'd' + p.id,x: p.dx,y: p.dy,color: colors['4'],})this.graph.add('edge', {id: 'e' + p.id,target: 'd' + p.id,source: 'p' + p.id,style: {endArrow: true},})this.fit()if (this.cars.length < 1)returnlet minc = nulllet mindis = 999999999for (let c of this.cars) {let d = dis(c, p)if (d < mindis && c.state == 0) {minc = cmindis = d}}if (!minc)returnminc.state = 1minc.dx = p.xminc.dy = p.yp.car = mincp.state = 1minc.people = pconsole.log(minc)this.graph.update('c' + minc.id, {color: colors[minc.state]})},fit() {this.graph.setFitView('autoZoom')},draw() {for (let c of this.cars) {if (c.x == c.dx && c.y == c.dy && c.state == 1) {// 到达乘客位置// 先增加后移除!!!!!!!!!!!!!let e = {source: 'c' + c.id,}this.graph.update('e' + c.people.id, e)this.graph.remove('p' + c.people.id)c.state = 2this.graph.update('c' + c.id, {color: colors[c.state]})c.dx = c.people.dxc.dy = c.people.dy} else if (c.x == c.dx && c.y == c.dy && c.state == 2) {// 到达乘客目的地// 删除目的地和边this.graph.remove('d' + c.people.id)c.state = 0this.graph.update('c' + c.id, {color: colors[c.state]})} else {if (c.state == 0)continuec.move()this.graph.update('c' + c.id, {x: c.x,y: c.y})}}}},mounted() {this.graph = new G6.Graph({container: 'vis',fitView: 'autoZoom',animate: false,});setInterval(() => this.draw(), 30)}}
</script><style scoped>.game {width: 100%;height: 100%;/*background: aqua;*/display: flex;flex-direction: column;justify-content: space-around;align-items: center;}.vis {width: 80%;height: 80%;/*flex-grow: 1;*//*width: 6;*//*height: 600px;*/border: 1px solid black;}.control {display: flex;justify-content: space-around;}
</style>

这篇关于antv g6 图形库 出租车模拟的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/519215

相关文章

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

usaco 1.2 Transformations(模拟)

我的做法就是一个一个情况枚举出来 注意计算公式: ( 变换后的矩阵记为C) 顺时针旋转90°:C[i] [j]=A[n-j-1] [i] (旋转180°和270° 可以多转几个九十度来推) 对称:C[i] [n-j-1]=A[i] [j] 代码有点长 。。。 /*ID: who jayLANG: C++TASK: transform*/#include<

GIS图形库更新2024.8.4-9.9

更多精彩内容请访问 dt.sim3d.cn ,关注公众号【sky的数孪技术】,技术交流、源码下载请添加微信:digital_twin123 Cesium 本期发布了1.121 版本。重大新闻,Cesium被Bentley收购。 ✨ 功能和改进 默认启用 MSAA,采样 4 次。若要关闭 MSAA,则可以设置scene.msaaSamples = 1。但是通过比较,发现并没有多大改善。

hdu4431麻将模拟

给13张牌。问增加哪些牌可以胡牌。 胡牌有以下几种情况: 1、一个对子 + 4组 3个相同的牌或者顺子。 2、7个不同的对子。 3、13幺 贪心的思想: 对于某张牌>=3个,先减去3个相同,再组合顺子。 import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOExcepti

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟)

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟) 题目描述 给定一个链表,链表中的每个节点代表一个整数。链表中的整数由 0 分隔开,表示不同的区间。链表的开始和结束节点的值都为 0。任务是将每两个相邻的 0 之间的所有节点合并成一个节点,新节点的值为原区间内所有节点值的和。合并后,需要移除所有的 0,并返回修改后的链表头节点。 思路分析 初始化:创建一个虚拟头节点

每日一题|牛客竞赛|四舍五入|字符串+贪心+模拟

每日一题|四舍五入 四舍五入 心有猛虎,细嗅蔷薇。你好朋友,这里是锅巴的C\C++学习笔记,常言道,不积跬步无以至千里,希望有朝一日我们积累的滴水可以击穿顽石。 四舍五入 题目: 牛牛发明了一种新的四舍五入应用于整数,对个位四舍五入,规则如下 12345->12350 12399->12400 输入描述: 输入一个整数n(0<=n<=109 ) 输出描述: 输出一个整数

【算法专场】模拟(下)

目录 前言 38. 外观数列 算法分析 算法思路 算法代码 1419. 数青蛙 算法分析 算法思路 算法代码  2671. 频率跟踪器 算法分析 算法思路 算法代码 前言 在前面我们已经讲解了什么是模拟算法,这篇主要是讲解在leetcode上遇到的一些模拟题目~ 38. 外观数列 算法分析 这道题其实就是要将连续且相同的字符替换成字符重复的次数+

模拟实现vector中的常见接口

insert void insert(iterator pos, const T& x){if (_finish == _endofstorage){int n = pos - _start;size_t newcapacity = capacity() == 0 ? 2 : capacity() * 2;reserve(newcapacity);pos = _start + n;//防止迭代

PHP实现二叉树遍历(非递归方式,栈模拟实现)

二叉树定义是这样的:一棵非空的二叉树由根结点及左、右子树这三个基本部分组成,根据节点的访问位置不同有三种遍历方式: ① NLR:前序遍历(PreorderTraversal亦称(先序遍历)) ——访问结点的操作发生在遍历其左右子树之前。 ② LNR:中序遍历(InorderTraversal) ——访问结点的操作发生在遍历其左右子树之中(间)。 ③ LRN:后序遍历(PostorderT