2025-05-28 09:25:09 +08:00
|
|
|
|
using Obfuz.ObfusPasses.SymbolObfus;
|
|
|
|
|
using Obfuz.Utils;
|
|
|
|
|
using System;
|
2025-05-21 09:23:29 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace Obfuz.Settings
|
|
|
|
|
{
|
2025-05-23 12:47:57 +08:00
|
|
|
|
public class SymbolObfuscationSettingsFacade
|
|
|
|
|
{
|
|
|
|
|
public bool debug;
|
|
|
|
|
public string obfuscatedNamePrefix;
|
|
|
|
|
public bool useConsistentNamespaceObfuscation;
|
|
|
|
|
public string symbolMappingFile;
|
|
|
|
|
public List<string> ruleFiles;
|
2025-05-28 09:25:09 +08:00
|
|
|
|
public List<Type> customRenamePolicyTypes;
|
2025-05-23 12:47:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-05-21 09:23:29 +08:00
|
|
|
|
[Serializable]
|
|
|
|
|
public class SymbolObfuscationSettings
|
|
|
|
|
{
|
|
|
|
|
public bool debug;
|
|
|
|
|
|
|
|
|
|
[Tooltip("prefix for obfuscated name to avoid name confliction with original name")]
|
|
|
|
|
public string obfuscatedNamePrefix = "$";
|
|
|
|
|
|
|
|
|
|
[Tooltip("obfuscate same namespace to one name")]
|
|
|
|
|
public bool useConsistentNamespaceObfuscation = true;
|
|
|
|
|
|
|
|
|
|
[Tooltip("symbol mapping file path")]
|
|
|
|
|
public string symbolMappingFile = "Assets/Obfuz/SymbolObfus/symbol-mapping.xml";
|
|
|
|
|
|
|
|
|
|
[Tooltip("rule files")]
|
|
|
|
|
public string[] ruleFiles;
|
2025-05-23 12:47:57 +08:00
|
|
|
|
|
2025-05-28 09:25:09 +08:00
|
|
|
|
[Tooltip("custom rename policy types")]
|
|
|
|
|
public string[] customRenamePolicyTypes;
|
|
|
|
|
|
2025-05-23 12:47:57 +08:00
|
|
|
|
public SymbolObfuscationSettingsFacade ToFacade()
|
|
|
|
|
{
|
|
|
|
|
return new SymbolObfuscationSettingsFacade
|
|
|
|
|
{
|
|
|
|
|
debug = debug,
|
|
|
|
|
obfuscatedNamePrefix = obfuscatedNamePrefix,
|
|
|
|
|
useConsistentNamespaceObfuscation = useConsistentNamespaceObfuscation,
|
|
|
|
|
symbolMappingFile = symbolMappingFile,
|
|
|
|
|
ruleFiles = ruleFiles.ToList(),
|
2025-05-28 09:25:09 +08:00
|
|
|
|
customRenamePolicyTypes = customRenamePolicyTypes.Select(typeName => ReflectionUtil.FindUniqueTypeInCurrentAppDomain(typeName)).ToList(),
|
2025-05-23 12:47:57 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
2025-05-21 09:23:29 +08:00
|
|
|
|
}
|
|
|
|
|
}
|