You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.7 KiB
74 lines
2.7 KiB
using System.Collections; |
|
using System.Collections.Generic; |
|
using UnityEngine; |
|
|
|
public class CloneRobot : CloneSingleObj { |
|
|
|
public override void Awake() |
|
{ |
|
cloneObjType = CloneObjType.Robot; |
|
ResourcesName = "Prefab/Tool/Robot"; |
|
base.Awake(); |
|
} |
|
/// <summary> |
|
/// 添加初始状态记录 |
|
/// </summary> |
|
/// <param name="list"></param> |
|
public override void AddRecordFrame(List<ObjectData> list) |
|
{ |
|
foreach (Transform child in transform) |
|
{ |
|
var data = new RecordRobot(); |
|
SetFireRobotData(data, child); |
|
string json = JsonUtility.ToJson(data); |
|
var objectJson = new ObjectData(); |
|
objectJson.cloneObjType = cloneObjType; |
|
objectJson.json = json; |
|
list.Add(objectJson); |
|
} |
|
} |
|
public void SetFireRobotData(RecordRobot data, Transform obj) |
|
{ |
|
var msg = obj.GetComponent<CloneGameObjInfo>(); |
|
data.gameObjType = msg.gameObjType; |
|
data.objectName = obj.gameObject.name; |
|
data.hasSupplier = obj.GetComponent<WaterReceiver>().hasSupplier; |
|
data.IsAutoSwing = obj.GetComponent<RobotAttribute>().IsAutoSwing; |
|
if (obj.GetComponent<ObjDrag>()) |
|
{ |
|
data.dragable = obj.GetComponent<ObjDrag>().enabled; |
|
} |
|
data.buildNum = msg.buildNum; |
|
data.floorNum = msg.floorNum; |
|
data.interlayerNum = msg.interlayerNum; |
|
data.myTransform.setMyPosition(obj.localPosition); |
|
data.myTransform.setMyRotation(obj.localRotation); |
|
data.myTransform.setMyScale(obj.localScale); |
|
data.isActive = obj.gameObject.activeSelf; |
|
data.headRotation = obj.Find("Gunturret").localEulerAngles; |
|
data.waterScale = obj.GetComponent<RobotControl>().GetWaterScale(); |
|
if (obj.GetComponent<ObjSelectCtrl>()) |
|
{ |
|
data.IsSelect = obj.GetComponent<ObjSelectCtrl>().selected; |
|
} |
|
data.task = obj.GetComponent<ToolAttribute>().task; |
|
} |
|
/// <summary> |
|
/// 添加记录(克隆) |
|
/// </summary> |
|
public override void AddRecordEventClone(Transform obj) |
|
{ |
|
if (ReplaySetting.PlayStatus == PlayStatus.isEditor && RecordManager.Instance.recordStatus == RecordStatus.normal) |
|
{ |
|
var eventData = new EventData(); |
|
eventData.time = RecordManager.Instance.RecordTimer; |
|
eventData.cloneObjType = cloneObjType; |
|
eventData.eventType = RecordEventType.Clone; |
|
var data = new RecordRobot(); |
|
SetFireRobotData(data, obj); |
|
string json = JsonUtility.ToJson(data); |
|
eventData.json = json; |
|
RecordManager.Instance.jsonData.eventDataList.Add(eventData); |
|
} |
|
} |
|
}
|
|
|