Repository URL to install this package:
Version:
2025.3.19 ▾
|
/*
* Copyright 2016 Game Server Services, Inc. or its affiliates. All Rights
* Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using Gs2.Core.Model;
using Gs2.Util.LitJson;
#if UNITY_2017_1_OR_NEWER
using UnityEngine.Scripting;
#endif
namespace Gs2.Gs2Mission.Model
{
#if UNITY_2017_1_OR_NEWER
[Preserve]
#endif
public partial class MissionTaskModel : IComparable
{
public string MissionTaskId { set; get; }
public string Name { set; get; }
public string Metadata { set; get; }
public string VerifyCompleteType { set; get; }
public Gs2.Gs2Mission.Model.TargetCounterModel TargetCounter { set; get; }
public Gs2.Core.Model.VerifyAction[] VerifyCompleteConsumeActions { set; get; }
public Gs2.Core.Model.AcquireAction[] CompleteAcquireActions { set; get; }
public string ChallengePeriodEventId { set; get; }
public string PremiseMissionTaskName { set; get; }
[Obsolete("This method is deprecated")]
public string CounterName { set; get; }
[Obsolete("This method is deprecated")]
public string TargetResetType { set; get; }
[Obsolete("This method is deprecated")]
public long? TargetValue { set; get; }
public MissionTaskModel WithMissionTaskId(string missionTaskId) {
this.MissionTaskId = missionTaskId;
return this;
}
public MissionTaskModel WithName(string name) {
this.Name = name;
return this;
}
public MissionTaskModel WithMetadata(string metadata) {
this.Metadata = metadata;
return this;
}
public MissionTaskModel WithVerifyCompleteType(string verifyCompleteType) {
this.VerifyCompleteType = verifyCompleteType;
return this;
}
public MissionTaskModel WithTargetCounter(Gs2.Gs2Mission.Model.TargetCounterModel targetCounter) {
this.TargetCounter = targetCounter;
return this;
}
public MissionTaskModel WithVerifyCompleteConsumeActions(Gs2.Core.Model.VerifyAction[] verifyCompleteConsumeActions) {
this.VerifyCompleteConsumeActions = verifyCompleteConsumeActions;
return this;
}
public MissionTaskModel WithCompleteAcquireActions(Gs2.Core.Model.AcquireAction[] completeAcquireActions) {
this.CompleteAcquireActions = completeAcquireActions;
return this;
}
public MissionTaskModel WithChallengePeriodEventId(string challengePeriodEventId) {
this.ChallengePeriodEventId = challengePeriodEventId;
return this;
}
public MissionTaskModel WithPremiseMissionTaskName(string premiseMissionTaskName) {
this.PremiseMissionTaskName = premiseMissionTaskName;
return this;
}
[Obsolete("This method is deprecated")]
public MissionTaskModel WithCounterName(string counterName) {
this.CounterName = counterName;
return this;
}
[Obsolete("This method is deprecated")]
public MissionTaskModel WithTargetResetType(string targetResetType) {
this.TargetResetType = targetResetType;
return this;
}
[Obsolete("This method is deprecated")]
public MissionTaskModel WithTargetValue(long? targetValue) {
this.TargetValue = targetValue;
return this;
}
private static System.Text.RegularExpressions.Regex _regionRegex = new System.Text.RegularExpressions.Regex(
@"grn:gs2:(?<region>.+):(?<ownerId>.+):mission:(?<namespaceName>.+):group:(?<missionGroupName>.+):missionTaskModel:(?<missionTaskName>.+)",
System.Text.RegularExpressions.RegexOptions.IgnoreCase
);
public static string GetRegionFromGrn(
string grn
)
{
var match = _regionRegex.Match(grn);
if (!match.Success || !match.Groups["region"].Success)
{
return null;
}
return match.Groups["region"].Value;
}
private static System.Text.RegularExpressions.Regex _ownerIdRegex = new System.Text.RegularExpressions.Regex(
@"grn:gs2:(?<region>.+):(?<ownerId>.+):mission:(?<namespaceName>.+):group:(?<missionGroupName>.+):missionTaskModel:(?<missionTaskName>.+)",
System.Text.RegularExpressions.RegexOptions.IgnoreCase
);
public static string GetOwnerIdFromGrn(
string grn
)
{
var match = _ownerIdRegex.Match(grn);
if (!match.Success || !match.Groups["ownerId"].Success)
{
return null;
}
return match.Groups["ownerId"].Value;
}
private static System.Text.RegularExpressions.Regex _namespaceNameRegex = new System.Text.RegularExpressions.Regex(
@"grn:gs2:(?<region>.+):(?<ownerId>.+):mission:(?<namespaceName>.+):group:(?<missionGroupName>.+):missionTaskModel:(?<missionTaskName>.+)",
System.Text.RegularExpressions.RegexOptions.IgnoreCase
);
public static string GetNamespaceNameFromGrn(
string grn
)
{
var match = _namespaceNameRegex.Match(grn);
if (!match.Success || !match.Groups["namespaceName"].Success)
{
return null;
}
return match.Groups["namespaceName"].Value;
}
private static System.Text.RegularExpressions.Regex _missionGroupNameRegex = new System.Text.RegularExpressions.Regex(
@"grn:gs2:(?<region>.+):(?<ownerId>.+):mission:(?<namespaceName>.+):group:(?<missionGroupName>.+):missionTaskModel:(?<missionTaskName>.+)",
System.Text.RegularExpressions.RegexOptions.IgnoreCase
);
public static string GetMissionGroupNameFromGrn(
string grn
)
{
var match = _missionGroupNameRegex.Match(grn);
if (!match.Success || !match.Groups["missionGroupName"].Success)
{
return null;
}
return match.Groups["missionGroupName"].Value;
}
private static System.Text.RegularExpressions.Regex _missionTaskNameRegex = new System.Text.RegularExpressions.Regex(
@"grn:gs2:(?<region>.+):(?<ownerId>.+):mission:(?<namespaceName>.+):group:(?<missionGroupName>.+):missionTaskModel:(?<missionTaskName>.+)",
System.Text.RegularExpressions.RegexOptions.IgnoreCase
);
public static string GetMissionTaskNameFromGrn(
string grn
)
{
var match = _missionTaskNameRegex.Match(grn);
if (!match.Success || !match.Groups["missionTaskName"].Success)
{
return null;
}
return match.Groups["missionTaskName"].Value;
}
#if UNITY_2017_1_OR_NEWER
[Preserve]
#endif
public static MissionTaskModel FromJson(JsonData data)
{
if (data == null) {
return null;
}
return new MissionTaskModel()
.WithMissionTaskId(!data.Keys.Contains("missionTaskId") || data["missionTaskId"] == null ? null : data["missionTaskId"].ToString())
.WithName(!data.Keys.Contains("name") || data["name"] == null ? null : data["name"].ToString())
.WithMetadata(!data.Keys.Contains("metadata") || data["metadata"] == null ? null : data["metadata"].ToString())
.WithVerifyCompleteType(!data.Keys.Contains("verifyCompleteType") || data["verifyCompleteType"] == null ? null : data["verifyCompleteType"].ToString())
.WithTargetCounter(!data.Keys.Contains("targetCounter") || data["targetCounter"] == null ? null : Gs2.Gs2Mission.Model.TargetCounterModel.FromJson(data["targetCounter"]))
.WithVerifyCompleteConsumeActions(!data.Keys.Contains("verifyCompleteConsumeActions") || data["verifyCompleteConsumeActions"] == null || !data["verifyCompleteConsumeActions"].IsArray ? null : data["verifyCompleteConsumeActions"].Cast<JsonData>().Select(v => {
return Gs2.Core.Model.VerifyAction.FromJson(v);
}).ToArray())
.WithCompleteAcquireActions(!data.Keys.Contains("completeAcquireActions") || data["completeAcquireActions"] == null || !data["completeAcquireActions"].IsArray ? null : data["completeAcquireActions"].Cast<JsonData>().Select(v => {
return Gs2.Core.Model.AcquireAction.FromJson(v);
}).ToArray())
.WithChallengePeriodEventId(!data.Keys.Contains("challengePeriodEventId") || data["challengePeriodEventId"] == null ? null : data["challengePeriodEventId"].ToString())
.WithPremiseMissionTaskName(!data.Keys.Contains("premiseMissionTaskName") || data["premiseMissionTaskName"] == null ? null : data["premiseMissionTaskName"].ToString())
.WithCounterName(!data.Keys.Contains("counterName") || data["counterName"] == null ? null : data["counterName"].ToString())
.WithTargetResetType(!data.Keys.Contains("targetResetType") || data["targetResetType"] == null ? null : data["targetResetType"].ToString())
.WithTargetValue(!data.Keys.Contains("targetValue") || data["targetValue"] == null ? null : (long?)(data["targetValue"].ToString().Contains(".") ? (long)double.Parse(data["targetValue"].ToString()) : long.Parse(data["targetValue"].ToString())));
}
public JsonData ToJson()
{
JsonData verifyCompleteConsumeActionsJsonData = null;
if (VerifyCompleteConsumeActions != null && VerifyCompleteConsumeActions.Length > 0)
{
verifyCompleteConsumeActionsJsonData = new JsonData();
foreach (var verifyCompleteConsumeAction in VerifyCompleteConsumeActions)
{
verifyCompleteConsumeActionsJsonData.Add(verifyCompleteConsumeAction.ToJson());
}
}
JsonData completeAcquireActionsJsonData = null;
if (CompleteAcquireActions != null && CompleteAcquireActions.Length > 0)
{
completeAcquireActionsJsonData = new JsonData();
foreach (var completeAcquireAction in CompleteAcquireActions)
{
completeAcquireActionsJsonData.Add(completeAcquireAction.ToJson());
}
}
return new JsonData {
["missionTaskId"] = MissionTaskId,
["name"] = Name,
["metadata"] = Metadata,
["verifyCompleteType"] = VerifyCompleteType,
["targetCounter"] = TargetCounter?.ToJson(),
["verifyCompleteConsumeActions"] = verifyCompleteConsumeActionsJsonData,
["completeAcquireActions"] = completeAcquireActionsJsonData,
["challengePeriodEventId"] = ChallengePeriodEventId,
["premiseMissionTaskName"] = PremiseMissionTaskName,
};
}
public void WriteJson(JsonWriter writer)
{
writer.WriteObjectStart();
if (MissionTaskId != null) {
writer.WritePropertyName("missionTaskId");
writer.Write(MissionTaskId.ToString());
}
if (Name != null) {
writer.WritePropertyName("name");
writer.Write(Name.ToString());
}
if (Metadata != null) {
writer.WritePropertyName("metadata");
writer.Write(Metadata.ToString());
}
if (VerifyCompleteType != null) {
writer.WritePropertyName("verifyCompleteType");
writer.Write(VerifyCompleteType.ToString());
}
if (TargetCounter != null) {
writer.WritePropertyName("targetCounter");
TargetCounter.WriteJson(writer);
}
if (VerifyCompleteConsumeActions != null) {
writer.WritePropertyName("verifyCompleteConsumeActions");
writer.WriteArrayStart();
foreach (var verifyCompleteConsumeAction in VerifyCompleteConsumeActions)
{
if (verifyCompleteConsumeAction != null) {
verifyCompleteConsumeAction.WriteJson(writer);
}
}
writer.WriteArrayEnd();
}
if (CompleteAcquireActions != null) {
writer.WritePropertyName("completeAcquireActions");
writer.WriteArrayStart();
foreach (var completeAcquireAction in CompleteAcquireActions)
{
if (completeAcquireAction != null) {
completeAcquireAction.WriteJson(writer);
}
}
writer.WriteArrayEnd();
}
if (ChallengePeriodEventId != null) {
writer.WritePropertyName("challengePeriodEventId");
writer.Write(ChallengePeriodEventId.ToString());
}
if (PremiseMissionTaskName != null) {
writer.WritePropertyName("premiseMissionTaskName");
writer.Write(PremiseMissionTaskName.ToString());
}
if (CounterName != null) {
writer.WritePropertyName("counterName");
writer.Write(CounterName.ToString());
}
if (TargetResetType != null) {
writer.WritePropertyName("targetResetType");
writer.Write(TargetResetType.ToString());
}
if (TargetValue != null) {
writer.WritePropertyName("targetValue");
writer.Write((TargetValue.ToString().Contains(".") ? (long)double.Parse(TargetValue.ToString()) : long.Parse(TargetValue.ToString())));
}
writer.WriteObjectEnd();
}
public int CompareTo(object obj)
{
var other = obj as MissionTaskModel;
var diff = 0;
if (MissionTaskId == null && MissionTaskId == other.MissionTaskId)
{
// null and null
}
else
{
diff += MissionTaskId.CompareTo(other.MissionTaskId);
}
if (Name == null && Name == other.Name)
{
// null and null
}
else
{
diff += Name.CompareTo(other.Name);
}
if (Metadata == null && Metadata == other.Metadata)
{
// null and null
}
else
{
diff += Metadata.CompareTo(other.Metadata);
}
if (VerifyCompleteType == null && VerifyCompleteType == other.VerifyCompleteType)
{
// null and null
}
else
{
diff += VerifyCompleteType.CompareTo(other.VerifyCompleteType);
}
if (TargetCounter == null && TargetCounter == other.TargetCounter)
{
// null and null
}
else
{
diff += TargetCounter.CompareTo(other.TargetCounter);
}
if (VerifyCompleteConsumeActions == null && VerifyCompleteConsumeActions == other.VerifyCompleteConsumeActions)
{
// null and null
}
else
{
diff += VerifyCompleteConsumeActions.Length - other.VerifyCompleteConsumeActions.Length;
for (var i = 0; i < VerifyCompleteConsumeActions.Length; i++)
{
diff += VerifyCompleteConsumeActions[i].CompareTo(other.VerifyCompleteConsumeActions[i]);
}
}
if (CompleteAcquireActions == null && CompleteAcquireActions == other.CompleteAcquireActions)
{
// null and null
}
else
{
diff += CompleteAcquireActions.Length - other.CompleteAcquireActions.Length;
for (var i = 0; i < CompleteAcquireActions.Length; i++)
{
diff += CompleteAcquireActions[i].CompareTo(other.CompleteAcquireActions[i]);
}
}
if (ChallengePeriodEventId == null && ChallengePeriodEventId == other.ChallengePeriodEventId)
{
// null and null
}
else
{
diff += ChallengePeriodEventId.CompareTo(other.ChallengePeriodEventId);
}
if (PremiseMissionTaskName == null && PremiseMissionTaskName == other.PremiseMissionTaskName)
{
// null and null
}
else
{
diff += PremiseMissionTaskName.CompareTo(other.PremiseMissionTaskName);
}
if (CounterName == null && CounterName == other.CounterName)
{
// null and null
}
else
{
diff += CounterName.CompareTo(other.CounterName);
}
if (TargetResetType == null && TargetResetType == other.TargetResetType)
{
// null and null
}
else
{
diff += TargetResetType.CompareTo(other.TargetResetType);
}
if (TargetValue == null && TargetValue == other.TargetValue)
{
// null and null
}
else
{
diff += (int)(TargetValue - other.TargetValue);
}
return diff;
}
public void Validate() {
{
if (MissionTaskId.Length > 1024) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("missionTaskModel", "mission.missionTaskModel.missionTaskId.error.tooLong"),
});
}
}
{
if (Name.Length > 128) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("missionTaskModel", "mission.missionTaskModel.name.error.tooLong"),
});
}
}
{
if (Metadata.Length > 1024) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("missionTaskModel", "mission.missionTaskModel.metadata.error.tooLong"),
});
}
}
{
switch (VerifyCompleteType) {
case "counter":
case "verifyActions":
break;
default:
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("missionTaskModel", "mission.missionTaskModel.verifyCompleteType.error.invalid"),
});
}
}
if (VerifyCompleteType == "counter") {
}
{
if (VerifyCompleteConsumeActions.Length > 10) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("missionTaskModel", "mission.missionTaskModel.verifyCompleteConsumeActions.error.tooMany"),
});
}
}
{
if (CompleteAcquireActions.Length > 100) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("missionTaskModel", "mission.missionTaskModel.completeAcquireActions.error.tooMany"),
});
}
}
{
if (ChallengePeriodEventId.Length > 1024) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("missionTaskModel", "mission.missionTaskModel.challengePeriodEventId.error.tooLong"),
});
}
}
{
if (PremiseMissionTaskName.Length > 128) {
throw new Gs2.Core.Exception.BadRequestException(new [] {
new RequestError("missionTaskModel", "mission.missionTaskModel.premiseMissionTaskName.error.tooLong"),
});
}
}
}
public object Clone() {
return new MissionTaskModel {
MissionTaskId = MissionTaskId,
Name = Name,
Metadata = Metadata,
VerifyCompleteType = VerifyCompleteType,
TargetCounter = TargetCounter?.Clone() as Gs2.Gs2Mission.Model.TargetCounterModel,
VerifyCompleteConsumeActions = VerifyCompleteConsumeActions?.Clone() as Gs2.Core.Model.VerifyAction[],
CompleteAcquireActions = CompleteAcquireActions?.Clone() as Gs2.Core.Model.AcquireAction[],
ChallengePeriodEventId = ChallengePeriodEventId,
PremiseMissionTaskName = PremiseMissionTaskName,
CounterName = CounterName,
TargetResetType = TargetResetType,
TargetValue = TargetValue,
};
}
}
}