当前位置:   article > 正文

Unity中简单加密实现软件限制使用次数和时间的小功能_unity 限制启动次数 注册表

unity 限制启动次数 注册表

Unity中实现简单限制软件打开的小功能

最近公司需求是需要在电脑上根据MAC地址软件 才能被打开,陆陆续续的又提了时间限制打开次数限制。

  通过打包之后第一次运行获取MAC地址(用于临时展示,大家也可以将信息加密一下再保存)保存在文本中,每次打开软件会判断当前是MAC地址是否一样,不一样则软件退出。

功能脚本:

using System;
using System.IO;
using System.Net.NetworkInformation;
using System.Text;
using UnityEngine;

public class LoginConfig : MonoBehaviour

{
    [Range(2021, 2023)]
    public int year = 2021;

    [Range(1, 12)]
    public int month = 1;

    [Range(1, 31)]
    public int day = 1;

    [Header("可以打开的次数")]
    public int EndCount = 3;

    [Header("是否开启MAC地址判定")]
    public bool isMainID = true;

    [Header("是否开启时间判定")]
    public bool isEndTime = true;

    [Header("是否开启次数判定")]
    public bool isCount = true;

    private string path = Application.streamingAssetsPath + "/Encryption/Complex/intelligence/config.txt";

    private void Start()

    {
        getJsonData();

        if (isMainID)

        {
            if (!GetmainID(GetMacAddress()))

            {
                Application.Quit();
            }
        }

        if (isEndTime)

        {
            if (!ComPareGetEndTime())

            {
                Application.Quit();
            }
        }

        if (isCount)

        {
            if (!CompareCount())

            {
                Application.Quit();
            }
        }
    }

    /// <summary>

    /// 获取配置

    /// </summary>

    private string[] getJsonData()

    {
        string[] strs = File.ReadAllText(path).Split('|');

        if (strs.Length != 2 || strs[0] == null || strs[1] == null)

        {
            //初始化

            string data = GetMacAddress() + "|0";

            File.WriteAllBytes(path, Encoding.UTF8.GetBytes(data));
        }

        return strs;
    }

    #region 获取MAC地址

    private bool GetmainID(string macid)
    {
        if (Application.platform!= RuntimePlatform.WindowsEditor)
        {
            string newMAC = getJsonData()[0];

            if (newMAC.Equals(GetMacAddress()) && GetMacAddress() != null)

            {
                return true;
            }
            else

            {
                return false;
            }
        }
        return true;
       
    }

    /// <summary>

    /// MAC地址

    /// </summary>

    /// <returns></returns>

    private static string GetMacAddress()

    {
        string physicalAddress = "";

        NetworkInterface[] nice = NetworkInterface.GetAllNetworkInterfaces();

        foreach (NetworkInterface adaper in nice)

        {
            Debug.Log(adaper.Description);

            if (adaper.Description == "en0")

            {
                physicalAddress = adaper.GetPhysicalAddress().ToString();

                break;
            }
            else

            {
                physicalAddress = adaper.GetPhysicalAddress().ToString();

                if (physicalAddress != "")

                {
                    break;
                };
            }
        }

        return physicalAddress;
    }

    #endregion 获取MAC地址

    #region 时间比较

    public bool ComPareGetEndTime()

    {
        string EndTime = year + "-" + month + "-" + day;

        //当前的时间

        DateTime nowTimeDate = DateTime.Today;

        DateTime endDataTime = Convert.ToDateTime(EndTime);

        try

        {
            if (endDataTime.CompareTo(nowTimeDate) < 0)

            {
                return false;
            }
            else

            {
                return true;
            }
        }
        catch (Exception)

        {
            throw;
        }
    }

    #endregion 时间比较

    #region 次数比较

    private bool CompareCount()

    {
        if (Application.platform!= RuntimePlatform.WindowsEditor)
        {
            int index = int.Parse(getJsonData()[1]);

            int value = index + 1;

            string newData = getJsonData()[0] + "|" + value.ToString();

            File.WriteAllBytes(path, Encoding.UTF8.GetBytes(newData));

            if (EndCount > index)

            {
                return true;
            }
            else

            {
                return false;
            }
        }
        return true;
    }

    #endregion 次数比较
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227

将需要勾选即可。
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/108217?site
推荐阅读
相关标签
  

闽ICP备14008679号