_xiaofang/xiaofang/Assets/yhj/scripts/JueseChoicePop.cs

117 lines
3.4 KiB
C#
Raw Normal View History

2024-11-30 17:43:21 +08:00
using System.Collections;
using System.Collections.Generic;
2024-12-01 22:24:03 +08:00
using Unity.VisualScripting;
2024-12-11 01:32:11 +08:00
using UnityEditor.Experimental.GraphView;
2024-11-30 17:43:21 +08:00
using UnityEngine;
2024-12-11 01:32:11 +08:00
using UnityEngine.Networking.Types;
2024-11-30 17:43:21 +08:00
using UnityEngine.UI;
public class JueseChoicePop : MonoBehaviour
{
2024-12-01 19:24:07 +08:00
public ClassMate classMate;
public ClassItem classItem;
2024-11-30 17:43:21 +08:00
public Button CloseBtn;
public Button Surebtn;
public GameObject classmatePrefab;
public Transform content;
2024-12-01 22:24:03 +08:00
public List<ClassMate> classMateList = new List<ClassMate> ();
2024-12-10 18:14:08 +08:00
public string s;
2024-12-10 23:24:15 +08:00
public JSONReader jsonReader;
2024-12-11 01:32:11 +08:00
public Panel panel;
2024-12-10 18:14:08 +08:00
//Start is called before the first frame update
2024-11-30 17:43:21 +08:00
void Start()
{
this.gameObject.SetActive(false);
CloseBtn.onClick.AddListener(CLosePop);
Surebtn.onClick.AddListener(CLosePop);
2024-12-11 01:32:11 +08:00
//Surebtn.onClick.AddListener(SetFenguan);
2024-12-10 21:34:19 +08:00
//SetClass();
2024-11-30 17:43:21 +08:00
}
void CLosePop()
{
this.gameObject.SetActive(false);
}
public void openPop()
{
this.gameObject.SetActive(true);
}
void SetFenguan()
{
//<2F><><EFBFBD>ô<EFBFBD><C3B4><EFBFBD><EFBFBD>ֵķֹ<C4B7><D6B9><EFBFBD>ԱΪ<D4B1>û<EFBFBD>ѡ<EFBFBD>еĽ<D0B5>ɫ<EFBFBD><C9AB><EFBFBD><EFBFBD>ˢ<EFBFBD>½<EFBFBD><C2BD><EFBFBD><EFBFBD><EFBFBD>Ϣ
2024-12-01 19:24:07 +08:00
classItem.isSet = true;
//classItem.setClassItem();
2024-11-30 17:43:21 +08:00
}
// Update is called once per frame
void Update()
{
2024-12-10 18:14:08 +08:00
2024-11-30 17:43:21 +08:00
}
2024-12-10 21:34:19 +08:00
public void SetClass(int id)
2024-11-30 17:43:21 +08:00
{
2024-12-11 01:32:11 +08:00
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǰ<EFBFBD><C7B0><EFBFBD><EFBFBD>
foreach (Transform child in content)
{
Destroy(child.gameObject);
}
2024-12-10 23:24:15 +08:00
// <20><>ȡָ<C8A1><D6B8> ID <20><> LocationData
LocationData locationData = jsonReader.GetAreaDateById(id);
2024-12-10 21:34:19 +08:00
2024-12-10 23:24:15 +08:00
// <20>ж<EFBFBD> Oversee <20>ֶ<EFBFBD>
if (locationData.Oversee == "-1")
2024-11-30 17:43:21 +08:00
{
2024-12-10 23:24:15 +08:00
Debug.Log($"Skipping ID {id}: Oversee is -1.");
return; // <20><><EFBFBD><EFBFBD>
}
// <20>ָ<EFBFBD> Oversee <20>ֶ<EFBFBD>
string[] overseeParts = locationData.Oversee.Split(',');
2024-12-11 01:32:11 +08:00
string firstElement = overseeParts[0];
string lastElement = overseeParts[1];
if (overseeParts.Length > 0)
2024-12-10 23:24:15 +08:00
{
2024-12-11 01:32:11 +08:00
// <20>жϵ<D0B6>һ<EFBFBD><D2BB>Ԫ<EFBFBD><D4AA><EFBFBD>Ƿ<EFBFBD>Ϊ "1"
if (lastElement == "1")
2024-12-10 23:24:15 +08:00
{
2024-12-11 01:32:11 +08:00
foreach (var pair in panel.sceneDataDictionary)
2024-12-10 23:24:15 +08:00
{
2024-12-11 01:32:11 +08:00
foreach (var selectedInfo in pair.Value)
{
Debug.Log("+++++++++++++++++++++++"+ int.Parse(firstElement));
Debug.Log("-------------------------"+ selectedInfo.dutyId);
2024-12-12 15:21:07 +08:00
if (selectedInfo.dutyId == firstElement)
2024-12-11 01:32:11 +08:00
{
GameObject item = GameObject.Instantiate(classmatePrefab, content);
ClassMate classMate = item.GetComponent<ClassMate>();
classMate.classmatename.text = selectedInfo.name;
}
}
2024-12-10 23:24:15 +08:00
}
2024-12-11 01:32:11 +08:00
Debug.Log($"Instantiated ClassMate for ID {id} with name {locationData.Name}");
2024-12-10 23:24:15 +08:00
}
2024-11-30 17:43:21 +08:00
}
}
2024-12-01 19:24:07 +08:00
2024-12-10 23:24:15 +08:00
2024-12-11 01:32:11 +08:00
2024-12-01 19:24:07 +08:00
public void SetClassItem(ClassItem classItem)
{
this.classItem = classItem;
}
2024-12-10 18:14:08 +08:00
public void SetClassMate(ClassMate classMate, string a = "")
2024-12-01 19:24:07 +08:00
{
2024-12-01 22:24:03 +08:00
classMate.isBeSet = true;
2024-12-01 19:24:07 +08:00
classItem.isSet = true;
this.classMate = classMate;
2024-12-10 18:14:08 +08:00
//classItem.setClassItem(classMate.classmatename.text);
2024-12-01 22:24:03 +08:00
//s = classMate.classmatename.text;
this.classMate.classmatename.text = classMate.classmatename.text + "(" + classItem.classname.text + ")";
}
2024-11-30 17:43:21 +08:00
}