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.
179 lines
5.6 KiB
179 lines
5.6 KiB
using UnityEngine; |
|
using UnityEngine.UI; |
|
using UniRx; |
|
using AX.ImageViewer; |
|
|
|
public class SmokeFanPanel : UIView<CloneObject,CloneObjectReactive> |
|
{ |
|
//标题 |
|
public Text TitleText; |
|
//排烟量 |
|
public Text VolumeText; |
|
public InputField VolumeInput; |
|
//启动方式 |
|
public Text ModeText; |
|
public InputField ModeInput; |
|
//开关位置 |
|
public Text LocationText; |
|
public InputField LocationInput; |
|
//图片类型 |
|
public OriginalImageType ImageType; |
|
//图片面板 |
|
public Image ImagePanel; |
|
//全景开关 |
|
public Toggle ImageTypeToggle; |
|
//查看原图 |
|
public Button ViewButton; |
|
public OpenImage OpenImageFile; |
|
//保存按钮 |
|
public Button SaveButton; |
|
//url |
|
private string url; |
|
|
|
public override void Awake() |
|
{ |
|
base.Awake(); |
|
|
|
#region DataSource Bind |
|
DataSource.Name.SubscribeToText(VolumeText).AddTo(gameObject); |
|
DataSource.Name.SubscribeToText(VolumeInput).AddTo(gameObject); |
|
|
|
DataSource.Discription.SubscribeToText(ModeText).AddTo(gameObject); |
|
DataSource.Discription.SubscribeToText(ModeInput).AddTo(gameObject); |
|
|
|
DataSource.Address.SubscribeToText(LocationText).AddTo(gameObject); |
|
DataSource.Address.SubscribeToText(LocationInput).AddTo(gameObject); |
|
|
|
DataSource.ImageType.Subscribe(data => |
|
{ |
|
switch (data) |
|
{ |
|
case OriginalImageType.Normal: |
|
ImageTypeToggle.isOn = false; |
|
break; |
|
case OriginalImageType.Panorama: |
|
ImageTypeToggle.isOn = true; |
|
break; |
|
} |
|
}).AddTo(gameObject); |
|
|
|
DataSource.ImageUrl.Subscribe(url => |
|
{ |
|
GetImage(); |
|
}).AddTo(gameObject); |
|
|
|
VolumeInput.OnValueChangedAsObservable().Subscribe(s => DataSource.Name.Value = s); |
|
ModeInput.OnValueChangedAsObservable().Subscribe(s => DataSource.Discription.Value = s); |
|
LocationInput.OnValueChangedAsObservable().Subscribe(s => DataSource.Address.Value = s); |
|
ImageTypeToggle.OnValueChangedAsObservable().Subscribe(b => |
|
{ |
|
DataSource.ImageType.Value = b ? OriginalImageType.Panorama : OriginalImageType.Normal; |
|
}).AddTo(gameObject); |
|
#endregion |
|
#region Button Click |
|
//保存 |
|
SaveButton.onClick.AsObservable().Subscribe(onClick => |
|
{ |
|
SaveData(); |
|
}).AddTo(gameObject); |
|
//查看原图 |
|
ViewButton.onClick.AsObservable().Subscribe(onClick => |
|
{ |
|
ViewImage(); |
|
}); |
|
//关闭 |
|
transform.Find("TitleBar/CloseButton").GetComponent<Button>().OnClickAsObservable() |
|
.Subscribe(_ => Hide()); |
|
//上传图片 |
|
OpenImageFile.OnLoadTextureFinished = texture => |
|
{ |
|
UploadImage(texture); |
|
}; |
|
#endregion |
|
|
|
} |
|
|
|
public override void Show() |
|
{ |
|
base.Show(); |
|
switch (EquipmentManager.Instance.CreationType) |
|
{ |
|
case EquipmentType.ForcedDraftFan: |
|
TitleText.text = "送风机"; |
|
url = string.Format(HttpManager.Instance.PostForcedDraftFansById, DataSource.Id.Value); |
|
break; |
|
case EquipmentType.SmokeExtractionFan: |
|
TitleText.text = "排烟风机"; |
|
url = string.Format(HttpManager.Instance.PostSmokeExtractionFansById, DataSource.Id.Value); |
|
break; |
|
} |
|
GetComponent<AttributePanelControl>().ResetPanel(); |
|
} |
|
/// <summary> |
|
/// 保存数据 |
|
/// </summary> |
|
public void SaveData() |
|
{ |
|
GameObject tempGo = EquipmentManager.SpawObjects[EquipmentManager.Instance.CreationType][DataSource.Id.Value]; |
|
DataSource.Position.Value = tempGo.transform.position; |
|
DataSource.Rotation.Value = tempGo.transform.rotation.eulerAngles; |
|
DataSource.MeshVertices.Value = tempGo.GetComponent<MeshFilter>()?.mesh.vertices; |
|
HttpManager.Instance.Post(url, DataSource.GetData()); |
|
} |
|
/// <summary> |
|
/// 上传图片 |
|
/// </summary> |
|
public void UploadImage(Texture2D texture) |
|
{ |
|
HttpManager.Instance.PostImage($"{DataSource.Id}.jpg", texture, a => |
|
{ |
|
DataSource.ImageUrl.Value = a?.ObjectName; |
|
}); |
|
} |
|
/// <summary> |
|
/// 获取图片 |
|
/// </summary> |
|
void GetImage() |
|
{ |
|
if (!string.IsNullOrEmpty(DataSource.ImageUrl.Value)) |
|
{ |
|
HttpManager.Instance.GetImage($"{ DataSource.ImageUrl.Value}?x-oss-process=image/resize,h_200", texture => |
|
{ |
|
ImagePanel.sprite = Sprite.Create(texture, new Rect(0, 0, texture.width, texture.height), Vector2.zero); |
|
ImagePanel.preserveAspect = true; |
|
}); |
|
} |
|
else |
|
{ |
|
ImagePanel.sprite = AssetManager.Instance.DefaultSprite; |
|
} |
|
|
|
} |
|
/// <summary> |
|
/// 查看原图 |
|
/// </summary> |
|
public void ViewImage() |
|
{ |
|
if (!string.IsNullOrEmpty(DataSource.ImageUrl.Value)) |
|
{ |
|
HttpManager.Instance.GetImage(DataSource.ImageUrl.Value, texture => |
|
{ |
|
switch (DataSource.ImageType.Value) |
|
{ |
|
case OriginalImageType.Normal: |
|
ImageViewer.Load(texture); |
|
break; |
|
case OriginalImageType.Panorama: |
|
PanoramicViewer.Load(texture); |
|
break; |
|
} |
|
}); |
|
} |
|
else |
|
{ |
|
MessageBox.Show("未上传图片!", Color.white, 3f); |
|
} |
|
|
|
|
|
} |
|
}
|
|
|