From 0b75b43cca6c04f49ddeae6d873ac53185e390bc Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@63.com>
Date: 星期四, 07 四月 2022 13:08:36 +0800
Subject: [PATCH] #

---
 static/js/app.js |   30 +++++++++++++++++++++++-------
 1 files changed, 23 insertions(+), 7 deletions(-)

diff --git a/static/js/app.js b/static/js/app.js
index 8abe956..d3c5c04 100644
--- a/static/js/app.js
+++ b/static/js/app.js
@@ -12,7 +12,7 @@
 import {StoreCrn} from './object/StoreCrn.js';
 import {StoreConvey} from './object/StoreConvey.js';
 import {StoreGoods} from './object/StoreGoods.js';
-
+import {StaTask} from './object/StaTask.js';
 
 var APP = {
 
@@ -27,6 +27,7 @@
 		this.outlinePass = null;
 		this.goodTypes=[];//瀛樺偍鎵�鏈夌殑搴撲綅绫诲瀷
 		this.crnTasks = [];// 鍫嗗灈鏈哄垪琛�
+		this.staTasks = [];// 杈撻�佺嚎鍒楄〃
 		this.moveForward = false;//鏄惁鍚戝墠杩愯
 		this.moveBackward = false;//鏄惁鍚戝悗杩愯
 		this.moveLeft = false;//鏄惁鍚戝乏杩愯
@@ -72,7 +73,8 @@
 			this.stats.end();
 			this.queryCrn();
 			this.crnMove();
-			this.staMove()
+			this.querySta();
+			this.staChange();
 		}
 		this.initScene = function () {
 			this.scene = new THREE.Scene();
@@ -357,15 +359,29 @@
 				}
 			}
 		}
-		this.crnMove = function (object) {
+		this.crnMove = function () {
 			for (let crnTask of this.crnTasks) {
 				crnTask.move();
 			}
 		}
-		this.staMove = function (object) {
-			// for (let crnTask of this.crnTasks) {
-			// 	crnTask.move();
-			// }
+		this.querySta = function () {
+			if (StaDatas !== null && this.firstTime === 0) {
+				for (let staData of StaDatas) {
+					let staTask = getArrVal(this.staTasks, "no", staData.no);
+					if (null == staTask) {
+						this.staTasks.push(new StaTask(staData, this));
+					} else {
+						if(!staTask.run) {
+							staTask.modify(staData);
+						}
+					}
+				}
+			}
+		}
+		this.staChange = function () {
+			for (let staTask of this.staTasks) {
+				staTask.change();
+			}
 		}
 
 		// 鍔熻兘鏂规硶鍖�

--
Gitblit v1.9.1