|
@@ -5,21 +5,21 @@ import android.graphics.PointF
|
|
|
import android.text.TextUtils
|
|
|
import androidx.lifecycle.viewModelScope
|
|
|
import cn.hutool.core.util.IdUtil
|
|
|
-import cn.sagacloud.android.cadengine.Lasso
|
|
|
-import cn.sagacloud.android.cadengine.items.PipeLineItem
|
|
|
-import cn.sagacloud.android.cadengine.items.PointItem
|
|
|
import cn.sagacloud.android.cadengine.items.TunableSpaceItem
|
|
|
-import cn.sagacloud.android.cadengine.types.*
|
|
|
-import com.framework.mvvm.model.db.entity.task.*
|
|
|
+import cn.sagacloud.android.cadengine.types.FloorData
|
|
|
+import cn.sagacloud.android.cadengine.types.PointZ
|
|
|
+import cn.sagacloud.android.cadengine.types.TunableSpace
|
|
|
+import com.framework.mvvm.model.db.entity.task.InfosforBuild
|
|
|
+import com.framework.mvvm.model.db.entity.task.ObjectEntity
|
|
|
+import com.framework.mvvm.model.db.entity.task.RelationEntity
|
|
|
+import com.framework.mvvm.model.db.entity.task.ServeAreaEntity
|
|
|
import com.framework.mvvm.model.repository.AdmRepository
|
|
|
import com.google.gson.Gson
|
|
|
-import com.google.gson.JsonArray
|
|
|
import com.google.gson.reflect.TypeToken
|
|
|
import com.sybotan.android.demo.activities.BaseActivity
|
|
|
import com.sybotan.android.demo.bean.RelConfigEntityPackClass
|
|
|
import com.sybotan.android.demo.bean.RelationPackClass
|
|
|
import com.sybotan.android.demo.bean.SpaceInfo
|
|
|
-import com.sybotan.android.demo.bean.result.*
|
|
|
import com.sybotan.android.demo.entitiies.Floor
|
|
|
import com.sybotan.android.demo.entitiies.Info
|
|
|
import com.sybotan.android.demo.entitiies.Statistics
|
|
@@ -32,8 +32,7 @@ import org.kodein.di.DI
|
|
|
import org.kodein.di.DIAware
|
|
|
import org.kodein.di.android.x.closestDI
|
|
|
import org.kodein.di.instance
|
|
|
-import java.util.*
|
|
|
-import kotlin.collections.ArrayList
|
|
|
+import java.io.File
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -62,8 +61,9 @@ class ChooseSpaceVM(
|
|
|
ToastUtils.showMyToast("没有地图")
|
|
|
break
|
|
|
}
|
|
|
- val floorOfflineData =
|
|
|
- SJsonUtil.fromJson(floor.floorMap!!, FloorData::class.java)
|
|
|
+ val mapFile = File("${floor.floorMap}")
|
|
|
+ val map = mapFile.bufferedReader().use { it.readText() }
|
|
|
+ val floorOfflineData = SJsonUtil.fromJson(map, FloorData::class.java)
|
|
|
mEmitter.SendDirective(MAP_LOAD, gson.toJson(floorOfflineData))
|
|
|
break
|
|
|
}
|
|
@@ -178,8 +178,9 @@ class ChooseSpaceVM(
|
|
|
ToastUtils.showMyToast("没有地图")
|
|
|
break
|
|
|
}
|
|
|
- val floorOfflineData =
|
|
|
- SJsonUtil.fromJson(floor.floorMap!!, FloorData::class.java)
|
|
|
+ val mapFile = File("${floor.floorMap}")
|
|
|
+ val map = mapFile.bufferedReader().use { it.readText() }
|
|
|
+ val floorOfflineData = SJsonUtil.fromJson(map, FloorData::class.java)
|
|
|
mEmitter.SendDirective(FLOOR_MAP, gson.toJson(floorOfflineData))
|
|
|
break
|
|
|
}
|
|
@@ -188,7 +189,11 @@ class ChooseSpaceVM(
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- fun insRel(deviceId: String, spaceIds: ArrayList<String>, groupRelConfigEntity: RelConfigEntityPackClass) {
|
|
|
+ fun insRel(
|
|
|
+ deviceId: String,
|
|
|
+ spaceIds: ArrayList<String>,
|
|
|
+ groupRelConfigEntity: RelConfigEntityPackClass
|
|
|
+ ) {
|
|
|
viewModelScope.launch {
|
|
|
val rels = getRelations(groupRelConfigEntity, deviceId)
|
|
|
for (rel in rels) {
|
|
@@ -205,7 +210,12 @@ class ChooseSpaceVM(
|
|
|
objFrom = deviceId
|
|
|
objto = id
|
|
|
}
|
|
|
- val en = repo.getRelByGraphCodeAndRelCodeAndObjFromAndObjTo(groupRelConfigEntity.entity.graphCode!!, groupRelConfigEntity.entity.relCode!!, objFrom, objto)
|
|
|
+ val en = repo.getRelByGraphCodeAndRelCodeAndObjFromAndObjTo(
|
|
|
+ groupRelConfigEntity.entity.graphCode!!,
|
|
|
+ groupRelConfigEntity.entity.relCode!!,
|
|
|
+ objFrom,
|
|
|
+ objto
|
|
|
+ )
|
|
|
if (en == null) {
|
|
|
val relEntity = RelationEntity(
|
|
|
id = IdUtil.simpleUUID(),
|
|
@@ -222,7 +232,11 @@ class ChooseSpaceVM(
|
|
|
clientId = null,
|
|
|
clientDevice = null,
|
|
|
deliveryState = -1,
|
|
|
- valid = 1, d2mState = -1, objFromLocalId = null, objToLocalId = null, state = 1
|
|
|
+ valid = 1,
|
|
|
+ d2mState = -1,
|
|
|
+ objFromLocalId = null,
|
|
|
+ objToLocalId = null,
|
|
|
+ state = 1
|
|
|
)
|
|
|
repo.insRelation(relEntity)
|
|
|
}
|