123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526 |
- using System;
- using System.Collections.Generic;
- using UnityEngine;
- using wf;
- public class StatusCtrl : MonoBehaviour
- {
- public void Init(StatusMgr statusMgr, GameObject goStatusPanel)
- {
- this.m_mgr = statusMgr;
- this.m_goPanel = goStatusPanel;
- if (Product.VBA)
- {
- UIWFPositionStore component = base.GetComponent<UIWFPositionStore>();
- if (component != null)
- {
- component.Apply();
- }
- UTY.GetChildObject(base.gameObject, "Parameter/Frame", false).GetComponent<UISprite>().height = 485;
- UTY.GetChildObject(base.gameObject, "BG", false).GetComponent<UISprite>().height = 664;
- }
- }
- private void InitViewer()
- {
- this.m_txtMaidIcon = UTY.GetChildObject(this.m_goPanel, "MaidIcon/Icon", false).GetComponent<UITexture>();
- GameObject childObject = UTY.GetChildObject(this.m_goPanel, "Name", false);
- this.m_lFirstName = UTY.GetChildObject(childObject, "FirstName", false).GetComponent<UILabel>();
- this.m_lLastName = UTY.GetChildObject(childObject, "LastName", false).GetComponent<UILabel>();
- this.m_lContractType = UTY.GetChildObject(this.m_goPanel, "Column1/ContractType/Value", false).GetComponent<UILabel>();
- this.m_lPersonal = UTY.GetChildObject(this.m_goPanel, "Column1/Character/Value", false).GetComponent<UILabel>();
- this.m_lSexualExperience = UTY.GetChildObject(this.m_goPanel, "Column1/SexExperience/Value", false).GetComponent<UILabel>();
- GameObject childObject2 = UTY.GetChildObject(this.m_goPanel, "Column1/MaidClass", false);
- this.m_lMaidClass = UTY.GetChildObject(childObject2, "Value", false).GetComponent<UILabel>();
- this.m_lMaidClassLevel = UTY.GetChildObject(childObject2, "Level/Value", false).GetComponent<UILabel>();
- this.m_lMaidClassExp = UTY.GetChildObject(childObject2, "Exp/CurrentExp/Value", false).GetComponent<UILabel>();
- this.m_lMaidClassRequiredExp = UTY.GetChildObject(childObject2, "Exp/RequiredExp/Value", false).GetComponent<UILabel>();
- GameObject childObject3 = UTY.GetChildObject(this.m_goPanel, "Column1/YotogiClass", false);
- this.m_lYotogiClass = UTY.GetChildObject(childObject3, "Value", false).GetComponent<UILabel>();
- this.m_lYotogiClassLevel = UTY.GetChildObject(childObject3, "Level/Value", false).GetComponent<UILabel>();
- this.m_lYotogiClassExp = UTY.GetChildObject(childObject3, "Exp/CurrentExp/Value", false).GetComponent<UILabel>();
- this.m_lYotogiClassRequiredExp = UTY.GetChildObject(childObject3, "Exp/RequiredExp/Value", false).GetComponent<UILabel>();
- GameObject childObject4 = UTY.GetChildObject(this.m_goPanel, "Column1/BodySize/Parent", false);
- this.m_lHeight = UTY.GetChildObject(childObject4, "Height/Value", false).GetComponent<UILabel>();
- this.m_lWeight = UTY.GetChildObject(childObject4, "Weight/Value", false).GetComponent<UILabel>();
- this.m_lBust = UTY.GetChildObject(childObject4, "Bust/Value", false).GetComponent<UILabel>();
- this.m_lCup = UTY.GetChildObject(childObject4, "Bust/Cup/Value", false).GetComponent<UILabel>();
- this.m_lWaist = UTY.GetChildObject(childObject4, "Waist/Value", false).GetComponent<UILabel>();
- this.m_lHip = UTY.GetChildObject(childObject4, "Hip/Value", false).GetComponent<UILabel>();
- GameObject childObject5 = UTY.GetChildObject(UTY.GetChildObject(this.m_goPanel, "Parameter", false), "Parent", false);
- this.m_lRelation = UTY.GetChildObject(childObject5, "Block1/Relation/Value", false).GetComponent<UILabel>();
- this.m_lConditionText = UTY.GetChildObject(childObject5, "Block1/ConditionText/Value", false).GetComponent<UILabel>();
- this.m_lLikability = UTY.GetChildObject(childObject5, "Block1/Likability/Value", false).GetComponent<UILabel>();
- this.m_lLovely = UTY.GetChildObject(childObject5, "Block2/Lovely/Value", false).GetComponent<UILabel>();
- this.m_lElegance = UTY.GetChildObject(childObject5, "Block2/Elegance/Value", false).GetComponent<UILabel>();
- this.m_lCharm = UTY.GetChildObject(childObject5, "Block2/Charm/Value", false).GetComponent<UILabel>();
- this.m_lCare = UTY.GetChildObject(childObject5, "Block2/Care/Value", false).GetComponent<UILabel>();
- this.m_lReception = UTY.GetChildObject(childObject5, "Block2/Reception/Value", false).GetComponent<UILabel>();
- this.m_lCooking = UTY.GetChildObject(childObject5, "Block2/Cooking/Value", false).GetComponent<UILabel>();
- this.m_lDance = UTY.GetChildObject(childObject5, "Block2/Dance/Value", false).GetComponent<UILabel>();
- this.m_lVocal = UTY.GetChildObject(childObject5, "Block2/Vocal/Value", false).GetComponent<UILabel>();
- this.m_lOthersPlayCount = UTY.GetChildObject(childObject5, "Block2/OthersPlayCount/Value", false).GetComponent<UILabel>();
- this.m_lTeachRate = UTY.GetChildObject(childObject5, "Block3/TeachRate/Value", false).GetComponent<UILabel>();
- this.m_lStudyRate = UTY.GetChildObject(childObject5, "Block3/StudyRate/Value", false).GetComponent<UILabel>();
- GameObject childObject6 = UTY.GetChildObject(this.m_goPanel, "Hparameter/Parent", false);
- this.m_lHp = UTY.GetChildObject(childObject6, "Hp/Value", false).GetComponent<UILabel>();
- this.m_lMind = UTY.GetChildObject(childObject6, "Mind/Value", false).GetComponent<UILabel>();
- this.m_lInran = UTY.GetChildObject(childObject6, "Inran/Value", false).GetComponent<UILabel>();
- this.m_lMValue = UTY.GetChildObject(childObject6, "MValue/Value", false).GetComponent<UILabel>();
- this.m_lHentai = UTY.GetChildObject(childObject6, "Hentai/Value", false).GetComponent<UILabel>();
- this.m_lHousi = UTY.GetChildObject(childObject6, "Housi/Value", false).GetComponent<UILabel>();
- this.m_lYotogiPlayCount = UTY.GetChildObject(childObject6, "YotogiPlayCount/Value", false).GetComponent<UILabel>();
- this.m_lAppeal = UTY.GetChildObject(this.m_goPanel, "Appeal/Appeal/Value", false).GetComponent<UILabel>();
- GameObject childObject7 = UTY.GetChildObject(this.m_goPanel, "ErogenousZone", false);
- this.m_lMouth = UTY.GetChildObject(childObject7, "Grid/Mouth/Value", false).GetComponent<UILabel>();
- this.m_lThroat = UTY.GetChildObject(childObject7, "Grid/Throat/Value", false).GetComponent<UILabel>();
- this.m_lNipple = UTY.GetChildObject(childObject7, "Grid/Nipple/Value", false).GetComponent<UILabel>();
- this.m_lClitoris = UTY.GetChildObject(childObject7, "Grid/Clitoris/Value", false).GetComponent<UILabel>();
- childObject7.SetActive(false);
- GameObject childObject8 = UTY.GetChildObject(this.m_goPanel, "Ranking", false);
- this.m_goldCrownIcon = UTY.GetChildObject(childObject8, "CrownIcon/Gold", false);
- this.m_silverCrownIcon = UTY.GetChildObject(childObject8, "CrownIcon/Silver", false);
- this.m_bronzeCrownIcon = UTY.GetChildObject(childObject8, "CrownIcon/Bronze", false);
- this.m_dicCrownIcon = new Dictionary<int, GameObject>
- {
- {
- 1,
- this.m_goldCrownIcon
- },
- {
- 2,
- this.m_silverCrownIcon
- },
- {
- 3,
- this.m_bronzeCrownIcon
- }
- };
- this.m_lRanking = UTY.GetChildObject(childObject8, "Value", false).GetComponent<UILabel>();
- GameObject childObject9 = UTY.GetChildObject(this.m_goPanel, "Evaluation/Parent", false);
- this.m_lAcquisitionOfClientEvaluation = UTY.GetChildObject(childObject9, "AcquisitionOfClientEvaluation/Value", false).GetComponent<UILabel>();
- this.m_lAcquisitionOfWorkingFunds = UTY.GetChildObject(childObject9, "AcquisitionOfWorkingFunds/Value", false).GetComponent<UILabel>();
- this.m_lDaysOfEmployment = UTY.GetChildObject(this.m_goPanel, "DaysOfEmployment/Value", false).GetComponent<UILabel>();
- if (MaidManagement.compatibilityMode)
- {
- this.m_lCooking.transform.parent.gameObject.SetActive(false);
- this.m_lDance.transform.parent.gameObject.SetActive(false);
- this.m_lVocal.transform.parent.gameObject.SetActive(false);
- this.m_lAppeal.transform.parent.parent.gameObject.SetActive(false);
- UTY.GetChildObject(childObject5, "Line2", false).transform.localPosition = new Vector3(69f, -338.3f, 0f);
- UTY.GetChildObject(childObject5, "Block3", false).transform.localPosition = new Vector3(0f, -369f, 0f);
- UTY.GetChildObject(childObject5.transform.parent.gameObject, "Frame", false).GetComponent<UISprite>().height = 460;
- childObject9.transform.parent.localPosition = new Vector3(-71f, -260f, 0f);
- childObject8.transform.localPosition = new Vector3(230f, -285f, 0f);
- childObject7.SetActive(true);
- }
- }
- public void CreateViewer(StatusCtrl.Status status)
- {
- if (!this.m_bInit)
- {
- this.InitViewer();
- this.m_bInit = true;
- }
- this.SetData(status);
- }
- private void SetData(StatusCtrl.Status status)
- {
- this.m_txtMaidIcon.mainTexture = status.maidIcon;
- this.m_lFirstName.text = status.firstName;
- this.m_lLastName.text = status.lastName;
- this.m_lContractType.text = status.contractType;
- this.m_lPersonal.fontSize = 22;
- this.m_lPersonal.text = status.personal;
- Utility.ResizeUILabelFontSize(this.m_lPersonal, 251);
- this.m_lSexualExperience.text = status.sexualExperience;
- this.m_lMaidClass.text = status.maidClassName;
- this.m_lMaidClassLevel.text = status.maidClassLevel.ToString();
- this.m_lMaidClassExp.text = ((status.maidClassExp >= 0) ? status.maidClassExp.ToString() : "-");
- this.m_lMaidClassRequiredExp.text = ((status.maidClassRequiredExp >= 0) ? status.maidClassRequiredExp.ToString() : "-");
- this.m_lYotogiClass.text = status.yotogiClassName;
- this.m_lYotogiClassLevel.text = status.yotogiClassLevel.ToString();
- this.m_lYotogiClassExp.text = ((status.yotogiClassExp >= 0) ? status.yotogiClassExp.ToString() : "-");
- this.m_lYotogiClassRequiredExp.text = ((status.yotogiClassRequiredExp >= 0) ? status.yotogiClassRequiredExp.ToString() : "-");
- this.m_lHeight.text = status.height.ToString();
- this.m_lWeight.text = status.weight.ToString();
- this.m_lBust.text = status.bust.ToString();
- this.m_lCup.text = status.cup;
- this.m_lWaist.text = status.waist.ToString();
- this.m_lHip.text = status.hip.ToString();
- this.m_lRelation.fontSize = 25;
- this.m_lRelation.text = status.relation;
- Utility.ResizeUILabelFontSize(this.m_lRelation, 152);
- this.m_lConditionText.fontSize = 25;
- this.m_lConditionText.text = status.conditionText;
- Utility.ResizeUILabelFontSize(this.m_lConditionText, 152);
- this.m_lHp.text = status.hp.ToString();
- this.m_lMind.text = status.mind.ToString();
- this.m_lLikability.text = status.likability.ToString();
- this.m_lCare.text = status.care.ToString();
- this.m_lReception.text = status.reception.ToString();
- this.m_lCooking.text = status.cooking.ToString();
- this.m_lDance.text = status.dance.ToString();
- this.m_lVocal.text = status.vocal.ToString();
- this.m_lAppeal.text = ((status.appeal >= 0) ? status.appeal.ToString() : "-");
- this.m_lStudyRate.text = ((status.studyRate >= 0) ? status.studyRate.ToString() : "-");
- this.m_lTeachRate.text = ((status.teachRate >= 0) ? status.teachRate.ToString() : "-");
- this.m_lLovely.text = status.lovely.ToString();
- this.m_lElegance.text = status.elegance.ToString();
- this.m_lCharm.text = status.charm.ToString();
- this.m_lInran.text = status.inran.ToString();
- this.m_lMValue.text = status.mValue.ToString();
- this.m_lHentai.text = status.hentai.ToString();
- this.m_lHousi.text = status.housi.ToString();
- this.m_lYotogiPlayCount.text = ((status.yotogiPlayCount >= 0) ? status.yotogiPlayCount.ToString() : "-");
- this.m_lOthersPlayCount.text = ((status.othersPlayCount >= 0) ? status.othersPlayCount.ToString() : "-");
- this.m_lMouth.text = status.mouth.ToString();
- this.m_lThroat.text = status.throat.ToString();
- this.m_lNipple.text = status.nipple.ToString();
- this.m_lClitoris.text = status.curi.ToString();
- this.m_lRanking.text = ScheduleCtrl.ConvertValueWhenDefault(status.ranking, "-");
- this.m_lAcquisitionOfClientEvaluation.text = ((status.acquisitionOfClientEvaluation >= 0L) ? status.acquisitionOfClientEvaluation.ToString() : "-");
- this.m_lAcquisitionOfWorkingFunds.text = ((status.acquisitionOfWorkingFunds >= 0L) ? status.acquisitionOfWorkingFunds.ToString("#,0") : "-");
- this.m_lDaysOfEmployment.text = status.daysOfEmployment.ToString();
- Utility.SetLocalizeTerm(this.m_lContractType, status.contractTypeTerm);
- Utility.SetLocalizeTerm(this.m_lPersonal, status.personalTerm);
- Utility.SetLocalizeTerm(this.m_lSexualExperience, status.sexualExperienceTerm);
- Utility.SetLocalizeTerm(this.m_lMaidClass, status.maidClassNameTerm);
- Utility.SetLocalizeTerm(this.m_lRelation, status.relationTerm);
- Utility.SetLocalizeTerm(this.m_lConditionText, status.conditionTextTerm);
- if (!Product.SPP)
- {
- UTY.GetChildObject(this.m_goPanel, "DaysOfEmployment/Title", false).GetComponent<UILabel>().text = "雇用日数";
- }
- this.SetCrownIcon(status.ranking);
- }
- private void SetCrownIcon(int ranking)
- {
- foreach (KeyValuePair<int, GameObject> keyValuePair in this.m_dicCrownIcon)
- {
- if (keyValuePair.Key == ranking)
- {
- keyValuePair.Value.SetActive(true);
- }
- else
- {
- keyValuePair.Value.SetActive(false);
- }
- }
- }
- public static int ToPercent(int number, int denominator)
- {
- return (int)System.Math.Floor((double)(number / denominator));
- }
- private StatusMgr m_mgr;
- private Dictionary<int, GameObject> m_dicCrownIcon;
- private GameObject m_goPanel;
- private GameObject m_goldCrownIcon;
- private GameObject m_silverCrownIcon;
- private GameObject m_bronzeCrownIcon;
- private UITexture m_txtMaidIcon;
- private UITexture m_txtCrownIcon;
- private UILabel m_lFirstName;
- private UILabel m_lLastName;
- private UILabel m_lContractType;
- private UILabel m_lPersonal;
- private UILabel m_lSexualExperience;
- private UILabel m_lMaidClass;
- private UILabel m_lMaidClassLevel;
- private UILabel m_lMaidClassExp;
- private UILabel m_lMaidClassRequiredExp;
- private UILabel m_lYotogiClass;
- private UILabel m_lYotogiClassLevel;
- private UILabel m_lYotogiClassExp;
- private UILabel m_lYotogiClassRequiredExp;
- private UILabel m_lHeight;
- private UILabel m_lWeight;
- private UILabel m_lBust;
- private UILabel m_lCup;
- private UILabel m_lWaist;
- private UILabel m_lHip;
- private UILabel m_lHp;
- private UILabel m_lMind;
- private UILabel m_lLikability;
- private UILabel m_lCare;
- private UILabel m_lReception;
- private UILabel m_lCooking;
- private UILabel m_lDance;
- private UILabel m_lVocal;
- private UILabel m_lAppeal;
- private UILabel m_lStudyRate;
- private UILabel m_lTeachRate;
- private UILabel m_lLovely;
- private UILabel m_lElegance;
- private UILabel m_lCharm;
- private UILabel m_lInran;
- private UILabel m_lMValue;
- private UILabel m_lHentai;
- private UILabel m_lHousi;
- private UILabel m_lRelation;
- private UILabel m_lConditionText;
- private UILabel m_lYotogiPlayCount;
- private UILabel m_lOthersPlayCount;
- private UILabel m_lMouth;
- private UILabel m_lThroat;
- private UILabel m_lNipple;
- private UILabel m_lClitoris;
- private UILabel m_lRanking;
- private UILabel m_lAcquisitionOfClientEvaluation;
- private UILabel m_lAcquisitionOfWorkingFunds;
- private UILabel m_lDaysOfEmployment;
- private bool m_bInit;
- private const int DENOMINATOR_10 = 10;
- public class Status
- {
- public int studyRate
- {
- get
- {
- return this._studyRate;
- }
- set
- {
- this._studyRate = StatusCtrl.ToPercent(value, 10);
- }
- }
- public int teachRate
- {
- get
- {
- return this._teachRate;
- }
- set
- {
- this._teachRate = StatusCtrl.ToPercent(value, 10);
- }
- }
- public int mouth
- {
- get
- {
- return this._mouth;
- }
- set
- {
- this._mouth = StatusCtrl.ToPercent(value, 10);
- }
- }
- public int throat
- {
- get
- {
- return this._throat;
- }
- set
- {
- this._throat = StatusCtrl.ToPercent(value, 10);
- }
- }
- public int nipple
- {
- get
- {
- return this._nipple;
- }
- set
- {
- this._nipple = StatusCtrl.ToPercent(value, 10);
- }
- }
- public int curi
- {
- get
- {
- return this._clitoris;
- }
- set
- {
- this._clitoris = StatusCtrl.ToPercent(value, 10);
- }
- }
- public Texture2D maidIcon;
- public string firstName;
- public string lastName;
- public string contractType;
- public string contractTypeTerm;
- public string personal;
- public string personalTerm;
- public string sexualExperience;
- public string sexualExperienceTerm;
- public string maidClassName;
- public string maidClassNameTerm;
- public int maidClassLevel;
- public int maidClassExp;
- public int maidClassRequiredExp;
- public string yotogiClassName;
- public int yotogiClassLevel;
- public int yotogiClassExp;
- public int yotogiClassRequiredExp;
- public int height;
- public int weight;
- public int bust;
- public string cup;
- public int waist;
- public int hip;
- public int hp;
- public int mind;
- public int likability;
- public int care;
- public int reception;
- public int cooking;
- public int dance;
- public int vocal;
- public int appeal;
- private int _studyRate;
- private int _teachRate;
- public int lovely;
- public int elegance;
- public int charm;
- public int inran;
- public int mValue;
- public int hentai;
- public int housi;
- public string relation;
- public string relationTerm;
- public string conditionText;
- public string conditionTextTerm;
- public int yotogiPlayCount;
- public int othersPlayCount;
- private int _mouth;
- private int _throat;
- private int _nipple;
- private int _clitoris;
- public int ranking;
- public Texture2D crownIcon;
- public long acquisitionOfClientEvaluation;
- public long acquisitionOfWorkingFunds;
- public int daysOfEmployment;
- }
- }
|