Files
JJBB/Assets/XLua/GenAttributes.cs
2024-08-23 15:49:34 +08:00

169 lines
4.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Tencent is pleased to support the open source community by making xLua available.
* Copyright (C) 2016 THL A29 Limited, a Tencent company. All rights reserved.
* Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
* http://opensource.org/licenses/MIT
* Unless required by applicable law or agreed to in writing, software distributed under the License 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;
namespace XLua
{
public enum GenFlag
{
No = 0,
[Obsolete("use GCOptimizeAttribute instead")]
GCOptimize = 1
}
//如果你要生成Lua调用CSharp的代码加这个标签
public class LuaCallCSharpAttribute : Attribute
{
GenFlag flag;
public GenFlag Flag {
get
{
return flag;
}
}
public LuaCallCSharpAttribute(GenFlag flag = GenFlag.No)
{
this.flag = flag;
}
}
//生成CSharp调用Lua加这标签
//[AttributeUsage(AttributeTargets.Delegate | AttributeTargets.Interface)]
public class CSharpCallLuaAttribute : Attribute
{
}
//如果某属性、方法不需要生成,加这个标签
public class BlackListAttribute : Attribute
{
}
[Flags]
public enum OptimizeFlag
{
Default = 0,
PackAsTable = 1
}
//如果想对struct生成免GC代码加这个标签
public class GCOptimizeAttribute : Attribute
{
OptimizeFlag flag;
public OptimizeFlag Flag
{
get
{
return flag;
}
}
public GCOptimizeAttribute(OptimizeFlag flag = OptimizeFlag.Default)
{
this.flag = flag;
}
}
//如果想在反射下使用,加这个标签
public class ReflectionUseAttribute : Attribute
{
}
//只能标注Dictionary<Type, List<string>>的field或者property
public class DoNotGenAttribute : Attribute
{
}
public class AdditionalPropertiesAttribute : Attribute
{
}
[Flags]
public enum HotfixFlag
{
Stateless = 0,
[Obsolete("use xlua.util.state instead!", true)]
Stateful = 1,
ValueTypeBoxing = 2,
IgnoreProperty = 4,
IgnoreNotPublic = 8,
Inline = 16,
IntKey = 32,
AdaptByDelegate = 64,
IgnoreCompilerGenerated = 128,
NoBaseProxy = 256,
}
public class HotfixAttribute : Attribute
{
HotfixFlag flag;
public HotfixFlag Flag
{
get
{
return flag;
}
}
public HotfixAttribute(HotfixFlag e = HotfixFlag.Stateless)
{
flag = e;
}
}
[AttributeUsage(AttributeTargets.Delegate)]
internal class HotfixDelegateAttribute : Attribute
{
}
#if !XLUA_GENERAL
public static class SysGenConfig
{
[GCOptimize]
static List<Type> GCOptimize
{
get
{
return new List<Type>() {
typeof(UnityEngine.Vector2),
typeof(UnityEngine.Vector3),
typeof(UnityEngine.Vector4),
typeof(UnityEngine.Color),
typeof(UnityEngine.Quaternion),
typeof(UnityEngine.Ray),
typeof(UnityEngine.Bounds),
typeof(UnityEngine.Ray2D),
};
}
}
[AdditionalProperties]
static Dictionary<Type, List<string>> AdditionalProperties
{
get
{
return new Dictionary<Type, List<string>>()
{
{ typeof(UnityEngine.Ray), new List<string>() { "origin", "direction" } },
{ typeof(UnityEngine.Ray2D), new List<string>() { "origin", "direction" } },
{ typeof(UnityEngine.Bounds), new List<string>() { "center", "extents" } },
};
}
}
}
#endif
}