You've already forked Commercialization.topon
init
This commit is contained in:
85
AnyThinkPlugin/Script/ATConfig.cs
Normal file
85
AnyThinkPlugin/Script/ATConfig.cs
Normal file
@@ -0,0 +1,85 @@
|
||||
|
||||
using System;
|
||||
using ATNet;
|
||||
using ATJson;
|
||||
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Networking;
|
||||
using System.Collections.Generic;
|
||||
using ATProviderInfo;
|
||||
using System.IO;
|
||||
namespace ATConf
|
||||
{
|
||||
|
||||
[Serializable]
|
||||
public class ATconfig
|
||||
{
|
||||
|
||||
public string version;
|
||||
public List<SDKInfo> sDKInfo;
|
||||
public String[] versionList;
|
||||
|
||||
public void saveToLocal(){
|
||||
string potion = JsonUtility.ToJson(this);
|
||||
System.IO.File.WriteAllText(ATNetInfo.localConfig,potion);
|
||||
|
||||
}
|
||||
|
||||
public void updateNetwork(ATInfo aTInfo){
|
||||
SDKInfo curInfo = null;
|
||||
|
||||
Debug.Log("ver:"+aTInfo.latestUnityVersion);
|
||||
|
||||
|
||||
foreach (SDKInfo info in this.sDKInfo){
|
||||
if(info.network == aTInfo.displayProviderName){
|
||||
curInfo = info;
|
||||
}
|
||||
}
|
||||
if(curInfo == null){
|
||||
curInfo = new SDKInfo();
|
||||
curInfo.network = aTInfo.displayProviderName;
|
||||
curInfo.version = aTInfo.latestUnityVersion;
|
||||
curInfo.displayVersion = aTInfo.displayVersion;
|
||||
|
||||
this.sDKInfo.Add(curInfo);
|
||||
}else{
|
||||
curInfo.version = aTInfo.latestUnityVersion;
|
||||
}
|
||||
|
||||
|
||||
saveToLocal();
|
||||
}
|
||||
|
||||
public void resetNetwork(){
|
||||
|
||||
this.sDKInfo = new List<SDKInfo>();
|
||||
saveToLocal();
|
||||
}
|
||||
|
||||
public static ATconfig getLocalConfig(){
|
||||
String file = File.ReadAllText(ATNetInfo.localConfig);
|
||||
ATconfig localConfig = JsonUtility.FromJson<ATconfig>(file);
|
||||
|
||||
if(localConfig == null){
|
||||
localConfig = new ATconfig();
|
||||
}
|
||||
return localConfig;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class SDKInfo {
|
||||
public string network;
|
||||
public string version;
|
||||
|
||||
public string displayVersion;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
11
AnyThinkPlugin/Script/ATConfig.cs.meta
Normal file
11
AnyThinkPlugin/Script/ATConfig.cs.meta
Normal file
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c9272816a9c944e828dd591dbae79e04
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
495
AnyThinkPlugin/Script/ATJson.cs
Normal file
495
AnyThinkPlugin/Script/ATJson.cs
Normal file
@@ -0,0 +1,495 @@
|
||||
/*
|
||||
* Based on the miniJSON by Calvin Rien
|
||||
*/
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
|
||||
namespace ATJson
|
||||
{
|
||||
public static class Json
|
||||
{
|
||||
public static object Deserialize (string json)
|
||||
{
|
||||
if (json == null) {
|
||||
return null;
|
||||
}
|
||||
return Parser.Parse (json);
|
||||
}
|
||||
|
||||
sealed class Parser : IDisposable
|
||||
{
|
||||
const string WHITE_SPACE = " \t\n\r";
|
||||
const string WORD_BREAK = " \t\n\r{}[],:\"";
|
||||
|
||||
enum TOKEN
|
||||
{
|
||||
NONE,
|
||||
CURLY_OPEN,
|
||||
CURLY_CLOSE,
|
||||
SQUARED_OPEN,
|
||||
SQUARED_CLOSE,
|
||||
COLON,
|
||||
COMMA,
|
||||
STRING,
|
||||
NUMBER,
|
||||
TRUE,
|
||||
FALSE,
|
||||
NULL
|
||||
}
|
||||
;
|
||||
|
||||
StringReader json;
|
||||
|
||||
Parser (string jsonString)
|
||||
{
|
||||
json = new StringReader (jsonString);
|
||||
}
|
||||
|
||||
public static object Parse (string jsonString)
|
||||
{
|
||||
using (var instance = new Parser(jsonString)) {
|
||||
return instance.ParseValue ();
|
||||
}
|
||||
}
|
||||
|
||||
public void Dispose ()
|
||||
{
|
||||
json.Dispose ();
|
||||
json = null;
|
||||
}
|
||||
|
||||
Dictionary<string, object> ParseObject ()
|
||||
{
|
||||
Dictionary<string, object> table = new Dictionary<string, object> ();
|
||||
|
||||
// ditch opening brace
|
||||
json.Read ();
|
||||
|
||||
// {
|
||||
while (true) {
|
||||
switch (NextToken) {
|
||||
case TOKEN.NONE:
|
||||
return null;
|
||||
case TOKEN.COMMA:
|
||||
continue;
|
||||
case TOKEN.CURLY_CLOSE:
|
||||
return table;
|
||||
default:
|
||||
// name
|
||||
string name = ParseString ();
|
||||
if (name == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
// :
|
||||
if (NextToken != TOKEN.COLON) {
|
||||
return null;
|
||||
}
|
||||
// ditch the colon
|
||||
json.Read ();
|
||||
|
||||
// value
|
||||
table [name] = ParseValue ();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
List<object> ParseArray ()
|
||||
{
|
||||
List<object> array = new List<object> ();
|
||||
|
||||
// ditch opening bracket
|
||||
json.Read ();
|
||||
|
||||
// [
|
||||
var parsing = true;
|
||||
while (parsing) {
|
||||
TOKEN nextToken = NextToken;
|
||||
|
||||
switch (nextToken) {
|
||||
case TOKEN.NONE:
|
||||
return null;
|
||||
case TOKEN.COMMA:
|
||||
continue;
|
||||
case TOKEN.SQUARED_CLOSE:
|
||||
parsing = false;
|
||||
break;
|
||||
default:
|
||||
object value = ParseByToken (nextToken);
|
||||
|
||||
array.Add (value);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return array;
|
||||
}
|
||||
|
||||
object ParseValue ()
|
||||
{
|
||||
TOKEN nextToken = NextToken;
|
||||
return ParseByToken (nextToken);
|
||||
}
|
||||
|
||||
object ParseByToken (TOKEN token)
|
||||
{
|
||||
switch (token) {
|
||||
case TOKEN.STRING:
|
||||
return ParseString ();
|
||||
case TOKEN.NUMBER:
|
||||
return ParseNumber ();
|
||||
case TOKEN.CURLY_OPEN:
|
||||
return ParseObject ();
|
||||
case TOKEN.SQUARED_OPEN:
|
||||
return ParseArray ();
|
||||
case TOKEN.TRUE:
|
||||
return true;
|
||||
case TOKEN.FALSE:
|
||||
return false;
|
||||
case TOKEN.NULL:
|
||||
return null;
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
string ParseString ()
|
||||
{
|
||||
StringBuilder s = new StringBuilder ();
|
||||
char c;
|
||||
|
||||
// ditch opening quote
|
||||
json.Read ();
|
||||
|
||||
bool parsing = true;
|
||||
while (parsing) {
|
||||
|
||||
if (json.Peek () == -1) {
|
||||
parsing = false;
|
||||
break;
|
||||
}
|
||||
|
||||
c = NextChar;
|
||||
switch (c) {
|
||||
case '"':
|
||||
parsing = false;
|
||||
break;
|
||||
case '\\':
|
||||
if (json.Peek () == -1) {
|
||||
parsing = false;
|
||||
break;
|
||||
}
|
||||
|
||||
c = NextChar;
|
||||
switch (c) {
|
||||
case '"':
|
||||
case '\\':
|
||||
case '/':
|
||||
s.Append (c);
|
||||
break;
|
||||
case 'b':
|
||||
s.Append ('\b');
|
||||
break;
|
||||
case 'f':
|
||||
s.Append ('\f');
|
||||
break;
|
||||
case 'n':
|
||||
s.Append ('\n');
|
||||
break;
|
||||
case 'r':
|
||||
s.Append ('\r');
|
||||
break;
|
||||
case 't':
|
||||
s.Append ('\t');
|
||||
break;
|
||||
case 'u':
|
||||
var hex = new StringBuilder ();
|
||||
|
||||
for (int i=0; i< 4; i++) {
|
||||
hex.Append (NextChar);
|
||||
}
|
||||
|
||||
s.Append ((char)Convert.ToInt32 (hex.ToString (), 16));
|
||||
break;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
s.Append (c);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return s.ToString ();
|
||||
}
|
||||
|
||||
object ParseNumber ()
|
||||
{
|
||||
string number = NextWord;
|
||||
|
||||
if (number.IndexOf ('.') == -1) {
|
||||
long parsedInt;
|
||||
Int64.TryParse (number, NumberStyles.Any, CultureInfo.InvariantCulture, out parsedInt);
|
||||
return parsedInt;
|
||||
}
|
||||
|
||||
double parsedDouble;
|
||||
Double.TryParse (number, NumberStyles.Any, CultureInfo.InvariantCulture, out parsedDouble);
|
||||
return parsedDouble;
|
||||
}
|
||||
|
||||
void EatWhitespace ()
|
||||
{
|
||||
while (WHITE_SPACE.IndexOf(PeekChar) != -1) {
|
||||
json.Read ();
|
||||
|
||||
if (json.Peek () == -1) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
char PeekChar {
|
||||
get {
|
||||
return Convert.ToChar (json.Peek ());
|
||||
}
|
||||
}
|
||||
|
||||
char NextChar {
|
||||
get {
|
||||
return Convert.ToChar (json.Read ());
|
||||
}
|
||||
}
|
||||
|
||||
string NextWord {
|
||||
get {
|
||||
StringBuilder word = new StringBuilder ();
|
||||
|
||||
while (WORD_BREAK.IndexOf(PeekChar) == -1) {
|
||||
word.Append (NextChar);
|
||||
|
||||
if (json.Peek () == -1) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return word.ToString ();
|
||||
}
|
||||
}
|
||||
|
||||
TOKEN NextToken {
|
||||
get {
|
||||
EatWhitespace ();
|
||||
|
||||
if (json.Peek () == -1) {
|
||||
return TOKEN.NONE;
|
||||
}
|
||||
|
||||
char c = PeekChar;
|
||||
switch (c) {
|
||||
case '{':
|
||||
return TOKEN.CURLY_OPEN;
|
||||
case '}':
|
||||
json.Read ();
|
||||
return TOKEN.CURLY_CLOSE;
|
||||
case '[':
|
||||
return TOKEN.SQUARED_OPEN;
|
||||
case ']':
|
||||
json.Read ();
|
||||
return TOKEN.SQUARED_CLOSE;
|
||||
case ',':
|
||||
json.Read ();
|
||||
return TOKEN.COMMA;
|
||||
case '"':
|
||||
return TOKEN.STRING;
|
||||
case ':':
|
||||
return TOKEN.COLON;
|
||||
case '0':
|
||||
case '1':
|
||||
case '2':
|
||||
case '3':
|
||||
case '4':
|
||||
case '5':
|
||||
case '6':
|
||||
case '7':
|
||||
case '8':
|
||||
case '9':
|
||||
case '-':
|
||||
return TOKEN.NUMBER;
|
||||
}
|
||||
|
||||
string word = NextWord;
|
||||
|
||||
switch (word) {
|
||||
case "false":
|
||||
return TOKEN.FALSE;
|
||||
case "true":
|
||||
return TOKEN.TRUE;
|
||||
case "null":
|
||||
return TOKEN.NULL;
|
||||
}
|
||||
|
||||
return TOKEN.NONE;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Converts a IDictionary / IList object or a simple type (string, int, etc.) into a JSON string
|
||||
/// </summary>
|
||||
/// <param name="json">A Dictionary<string, object> / List<object></param>
|
||||
/// <returns>A JSON encoded string, or null if object 'json' is not serializable</returns>
|
||||
public static string Serialize (object obj)
|
||||
{
|
||||
return Serializer.Serialize (obj);
|
||||
}
|
||||
|
||||
sealed class Serializer
|
||||
{
|
||||
StringBuilder builder;
|
||||
|
||||
Serializer ()
|
||||
{
|
||||
builder = new StringBuilder ();
|
||||
}
|
||||
|
||||
public static string Serialize (object obj)
|
||||
{
|
||||
var instance = new Serializer ();
|
||||
|
||||
instance.SerializeValue (obj);
|
||||
|
||||
return instance.builder.ToString ();
|
||||
}
|
||||
|
||||
void SerializeValue (object value)
|
||||
{
|
||||
IList asList;
|
||||
IDictionary asDict;
|
||||
string asStr;
|
||||
|
||||
if (value == null) {
|
||||
builder.Append ("null");
|
||||
} else if ((asStr = value as string) != null) {
|
||||
SerializeString (asStr);
|
||||
} else if (value is bool) {
|
||||
builder.Append (value.ToString ().ToLower ());
|
||||
} else if ((asList = value as IList) != null) {
|
||||
SerializeArray (asList);
|
||||
} else if ((asDict = value as IDictionary) != null) {
|
||||
SerializeObject (asDict);
|
||||
} else if (value is char) {
|
||||
SerializeString (value.ToString ());
|
||||
} else {
|
||||
SerializeOther (value);
|
||||
}
|
||||
}
|
||||
|
||||
void SerializeObject (IDictionary obj)
|
||||
{
|
||||
bool first = true;
|
||||
|
||||
builder.Append ('{');
|
||||
|
||||
foreach (object e in obj.Keys) {
|
||||
if (!first) {
|
||||
builder.Append (',');
|
||||
}
|
||||
|
||||
SerializeString (e.ToString ());
|
||||
builder.Append (':');
|
||||
|
||||
SerializeValue (obj [e]);
|
||||
|
||||
first = false;
|
||||
}
|
||||
|
||||
builder.Append ('}');
|
||||
}
|
||||
|
||||
void SerializeArray (IList anArray)
|
||||
{
|
||||
builder.Append ('[');
|
||||
|
||||
bool first = true;
|
||||
|
||||
foreach (object obj in anArray) {
|
||||
if (!first) {
|
||||
builder.Append (',');
|
||||
}
|
||||
|
||||
SerializeValue (obj);
|
||||
|
||||
first = false;
|
||||
}
|
||||
|
||||
builder.Append (']');
|
||||
}
|
||||
|
||||
void SerializeString (string str)
|
||||
{
|
||||
builder.Append ('\"');
|
||||
|
||||
char[] charArray = str.ToCharArray ();
|
||||
foreach (var c in charArray) {
|
||||
switch (c) {
|
||||
case '"':
|
||||
builder.Append ("\\\"");
|
||||
break;
|
||||
case '\\':
|
||||
builder.Append ("\\\\");
|
||||
break;
|
||||
case '\b':
|
||||
builder.Append ("\\b");
|
||||
break;
|
||||
case '\f':
|
||||
builder.Append ("\\f");
|
||||
break;
|
||||
case '\n':
|
||||
builder.Append ("\\n");
|
||||
break;
|
||||
case '\r':
|
||||
builder.Append ("\\r");
|
||||
break;
|
||||
case '\t':
|
||||
builder.Append ("\\t");
|
||||
break;
|
||||
default:
|
||||
int codepoint = Convert.ToInt32 (c);
|
||||
if ((codepoint >= 32) && (codepoint <= 126)) {
|
||||
builder.Append (c);
|
||||
} else {
|
||||
builder.Append ("\\u" + Convert.ToString (codepoint, 16).PadLeft (4, '0'));
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
builder.Append ('\"');
|
||||
}
|
||||
|
||||
void SerializeOther (object value)
|
||||
{
|
||||
if (value is float
|
||||
|| value is int
|
||||
|| value is uint
|
||||
|| value is long
|
||||
|| value is double
|
||||
|| value is sbyte
|
||||
|| value is byte
|
||||
|| value is short
|
||||
|| value is ushort
|
||||
|| value is ulong
|
||||
|| value is decimal) {
|
||||
builder.Append (value.ToString ());
|
||||
} else {
|
||||
SerializeString (value.ToString ());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
11
AnyThinkPlugin/Script/ATJson.cs.meta
Normal file
11
AnyThinkPlugin/Script/ATJson.cs.meta
Normal file
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fa8c0cec5bff04aeca5dc28fe21ffc89
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
27
AnyThinkPlugin/Script/ATNetInfo.cs
Normal file
27
AnyThinkPlugin/Script/ATNetInfo.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
||||
|
||||
using UnityEngine;
|
||||
|
||||
namespace ATNet {
|
||||
|
||||
public static class ATNetInfo {
|
||||
public static string platformName = "AnyThink";
|
||||
public static string ATDownloadDir = "Assets/AnyThinkAds/Dependencies/";
|
||||
public static string ATDependencyDir = "Assets/AnyThinkAds/Plugins/";
|
||||
public static string sdk = "sdk";
|
||||
public static string Android = "Android";
|
||||
public static string iOS = "iOS";
|
||||
public static string localConfig = "Assets/AnyThinkPlugin/Editor/localConfig.json";
|
||||
public static string networkPath = "http://topon-sdk-release.oss-cn-hangzhou.aliyuncs.com/Unity/network_config.json";
|
||||
public static string packagePath = "http://topon-sdk-release.oss-cn-hangzhou.aliyuncs.com/Unity/";
|
||||
public static int isGlobal=1; //0:国外 //1:国内
|
||||
|
||||
public static string getNetworkJson(String ver){
|
||||
return "http://topon-sdk-release.oss-cn-hangzhou.aliyuncs.com/Unity/"+ver+"/network.json";
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
11
AnyThinkPlugin/Script/ATNetInfo.cs.meta
Normal file
11
AnyThinkPlugin/Script/ATNetInfo.cs.meta
Normal file
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5eb818e47fd664e968f08784520c3f36
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
173
AnyThinkPlugin/Script/ATProviderInfo.cs
Normal file
173
AnyThinkPlugin/Script/ATProviderInfo.cs
Normal file
@@ -0,0 +1,173 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Xml;
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Networking;
|
||||
using ATNet;
|
||||
using ATConf;
|
||||
namespace ATProviderInfo {
|
||||
|
||||
public class ATInfo
|
||||
{
|
||||
|
||||
|
||||
|
||||
public Status currentStatues;
|
||||
public string providerName;
|
||||
public string currentUnityVersion;
|
||||
public string latestUnityVersion;
|
||||
public string downloadURL;
|
||||
public string displayProviderName;
|
||||
|
||||
public string currentDisplayVersion="-";
|
||||
public string displayVersion;
|
||||
|
||||
public bool isNewProvider;
|
||||
public string fileName;
|
||||
|
||||
public string packageName;
|
||||
|
||||
|
||||
|
||||
public Dictionary<string, string> sdkVersionDic;
|
||||
|
||||
public ATconfig localConfig;
|
||||
|
||||
|
||||
public ATInfo()
|
||||
{
|
||||
isNewProvider = false;
|
||||
fileName = string.Empty;
|
||||
downloadURL = string.Empty;
|
||||
currentUnityVersion = "none";
|
||||
sdkVersionDic = new Dictionary<string, string>();
|
||||
localConfig = ATconfig.getLocalConfig();
|
||||
|
||||
}
|
||||
|
||||
public enum Status
|
||||
{
|
||||
installed = 1,
|
||||
none = 2,
|
||||
updated = 3
|
||||
}
|
||||
|
||||
public bool GetFromJson(string name, Dictionary<string, object> dic)
|
||||
{
|
||||
providerName = name;
|
||||
object obj;
|
||||
|
||||
dic.TryGetValue("keyname", out obj);
|
||||
if (obj != null)
|
||||
{
|
||||
this.displayProviderName = obj as string;
|
||||
}
|
||||
else this.displayProviderName = providerName;
|
||||
|
||||
dic.TryGetValue("version", out obj);
|
||||
|
||||
if (obj != null)
|
||||
{
|
||||
this.latestUnityVersion = obj as string;
|
||||
}
|
||||
|
||||
dic.TryGetValue("displayVersion", out obj);
|
||||
|
||||
if (obj != null)
|
||||
{
|
||||
this.displayVersion = obj as string;
|
||||
}
|
||||
|
||||
|
||||
SDKInfo curInfo = null;
|
||||
foreach (SDKInfo info in localConfig.sDKInfo){
|
||||
if(info.network == this.displayProviderName)
|
||||
{
|
||||
curInfo = info;
|
||||
currentUnityVersion = info.version;
|
||||
currentDisplayVersion = info.displayVersion;
|
||||
}
|
||||
}
|
||||
if(curInfo == null){ // no saved in local
|
||||
currentUnityVersion = "-";
|
||||
}
|
||||
|
||||
if (currentUnityVersion.Equals("-"))
|
||||
{
|
||||
currentStatues = Status.none;
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
if (isNewerVersion(currentUnityVersion, latestUnityVersion))
|
||||
{
|
||||
currentStatues = Status.installed;
|
||||
}
|
||||
else
|
||||
{
|
||||
currentStatues = Status.updated;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
private static string GetVersionFromXML(string fileName)
|
||||
{
|
||||
XmlDocument xmlDoc = new XmlDocument();
|
||||
string version = "none";
|
||||
try
|
||||
{
|
||||
xmlDoc.LoadXml(File.ReadAllText(ATNetInfo.ATDownloadDir + fileName));
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Debug.Log("error--"+fileName+"--"+ e.Message);
|
||||
return version;
|
||||
}
|
||||
var unityVersion = xmlDoc.SelectSingleNode("dependencies/unityversion");
|
||||
|
||||
|
||||
if (unityVersion != null)
|
||||
{
|
||||
return (unityVersion.InnerText);
|
||||
}
|
||||
File.Delete(ATNetInfo.ATDownloadDir + fileName);
|
||||
return version;
|
||||
}
|
||||
|
||||
private static bool isNewerVersion(string current, string latest)
|
||||
{
|
||||
bool isNewer = false;
|
||||
try
|
||||
{
|
||||
int[] currentVersion = Array.ConvertAll(current.Split('.'), int.Parse);
|
||||
int[] remoteVersion = Array.ConvertAll(latest.Split('.'), int.Parse);
|
||||
int remoteBuild = 0;
|
||||
int curBuild = 0;
|
||||
if (currentVersion.Length > 3)
|
||||
{
|
||||
curBuild = currentVersion[3];
|
||||
}
|
||||
if (remoteVersion.Length > 3)
|
||||
{
|
||||
remoteBuild = remoteVersion[3];
|
||||
|
||||
}
|
||||
System.Version cur = new System.Version(currentVersion[0], currentVersion[1], currentVersion[2], curBuild);
|
||||
System.Version remote = new System.Version(remoteVersion[0], remoteVersion[1], remoteVersion[2], remoteBuild);
|
||||
isNewer = cur < remote;
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
|
||||
}
|
||||
return isNewer;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
11
AnyThinkPlugin/Script/ATProviderInfo.cs.meta
Normal file
11
AnyThinkPlugin/Script/ATProviderInfo.cs.meta
Normal file
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1123279c1b9244e11aaf04a78f2550b4
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user