使用java 对AssetRipper反编译缺失GUID进行重定位

重定位原理,将文件中的GUID替换为想替换的GUID进行重定位

建立重定位表 ,重定位后GUID文件中内容进行替换

GUID	文件	重定位GUID
da77c7bbf69f66ab2145560542327715	H:\AssetRipper_win_x64\data\ExportedProject\Assets\Plugins\Rewired_Core.dll.meta	
143b0b6c111942d138502348760c425a	H:\AssetRipper_win_x64\data\ExportedProject\Assets\Plugins\Rewired_Windows.dll.meta	
86f8915cf5533d44a83aa351b693ecd2	H:\AssetRipper_win_x64\data\ExportedProject\Assets\PrefabInstance\Rewired Input Manager.prefab.meta	
8c15d02c95ee223f94f489338130b924	H:\AssetRipper_win_x64\data\ExportedProject\Assets\Scripts\Assembly-CSharp\Rewired\Data\UserDataStore_PlayerPrefs.cs.meta	
e00661d5533343508e1c48b1f2eaa74a	H:\AssetRipper_win_x64\data\ExportedProject\Assets\Scripts\Assembly-CSharp\Rewired\InputManager.cs.meta	
7473025fa4b1bbfae7c090b0775b1bff	H:\AssetRipper_win_x64\data\ExportedProject\Assets\Scripts\Assembly-CSharp\Rewired\Integration\UnityUI\PlayerPointerEventData.cs.meta	
2357180b1ce51d59a68d70f1f5b476ae	H:\AssetRipper_win_x64\data\ExportedProject\Assets\Scripts\Assembly-CSharp\Rewired\Integration\UnityUI\RewiredPointerInputModule.cs.meta	
b5a076c1f3ef504faef355940bb6cf59	H:\AssetRipper_win_x64\data\ExportedProject\Assets\Scripts\Assembly-CSharp\Rewired\Integration\UnityUI\RewiredStandaloneInputModule.cs.meta	
fa2a8ff64442e09788d6d658bab2df43	H:\AssetRipper_win_x64\data\ExportedProject\Assets\Scripts\Assembly-CSharp\Rewired\Platforms\Switch\NintendoSwitchInputManager.cs.meta	

java代码实现

static void Relocation() throws IOException {
        Map<String,String> map = new HashMap<>();
        String input = "H:\\AssetRipper_win_x64\\data\\ExportedProject\\Assets\\_Game\\Scenes\\scene_debug.unity";
        map.put("e00661d5533343508e1c48b1f2eaa74a","cd600cea81e6679419aca00e287b5733");
        String out ="2.txt";
        WriteRelocation(map,input,out);
    }
    static void WriteRelocation(Map<String,String> map ,String inPutFile,String outFile ) throws IOException {
        Vector<String> vet = Myfile.readVetKeyData(inPutFile);
        Vector<String> vetWrite = new Vector<>();
        for (String s:vet){
            String temp = s;
            String guid = GetGUIID(s);
            if(guid!=""){
                if(map.containsKey(guid)){
                    System.out.println(guid);
                    temp = s.replace(guid,map.get(guid));
                }
            }
            vetWrite.add(temp);
        }
        Myfile.WriteVetCodeValue(outFile,vetWrite);//写入指定编码

    }
    public static String GetGUIID(String s){
        Pattern pattern = Pattern.compile("(guid: )([0-9a-fA-F]+)");
        Matcher matcher = pattern.matcher(s);
        String re = "";
        if(matcher.find()){
            re = matcher.group(2);
        }
        return  re;
    }

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
要在Java使用雪花算法生成全局唯一标识符(GUID),可以使用Twitter的Snowflake算法。Snowflake算法使用64位数字(long类型)来表示唯一标识符,其中第一位是符号位,不使用,接下来的41位表示时间戳,5位表示数据中心标识,5位表示工作机器标识,最后的12位表示序列号。 下面是一个简单的Java示例代码,用于使用Snowflake算法生成GUID: ```java public class SnowflakeIdGenerator { private final long datacenterId; private final long workerId; private long sequence = 0L; private final long twepoch = 1288834974657L; private final long datacenterIdBits = 5L; private final long workerIdBits = 5L; private final long maxDatacenterId = -1L ^ (-1L << datacenterIdBits); private final long maxWorkerId = -1L ^ (-1L << workerIdBits); private final long sequenceBits = 12L; private final long workerIdShift = sequenceBits; private final long datacenterIdShift = sequenceBits + workerIdBits; private final long timestampLeftShift = sequenceBits + workerIdBits + datacenterIdBits; private final long sequenceMask = -1L ^ (-1L << sequenceBits); private long lastTimestamp = -1L; public SnowflakeIdGenerator(long datacenterId, long workerId) { if (datacenterId > maxDatacenterId || datacenterId < 0) { throw new IllegalArgumentException("datacenterId can't be greater than maxDatacenterId or less than 0"); } if (workerId > maxWorkerId || workerId < 0) { throw new IllegalArgumentException("workerId can't be greater than maxWorkerId or less than 0"); } this.datacenterId = datacenterId; this.workerId = workerId; } public synchronized long nextId() { long timestamp = timeGen(); if (timestamp < lastTimestamp) { throw new RuntimeException("Clock moved backwards. Refusing to generate id for " + (lastTimestamp - timestamp) + " milliseconds"); } if (lastTimestamp == timestamp) { sequence = (sequence + 1) & sequenceMask; if (sequence == 0) { timestamp = tilNextMillis(lastTimestamp); } } else { sequence = 0L; } lastTimestamp = timestamp; return ((timestamp - twepoch) << timestampLeftShift) | (datacenterId << datacenterIdShift) | (workerId << workerIdShift) | sequence; } private long tilNextMillis(long lastTimestamp) { long timestamp = timeGen(); while (timestamp <= lastTimestamp) { timestamp = timeGen(); } return timestamp; } private long timeGen() { return System.currentTimeMillis(); } } ``` 要使用此类生成GUID,只需实例化`SnowflakeIdGenerator`类并调用`nextId()`方法。例如: ```java SnowflakeIdGenerator idGenerator = new SnowflakeIdGenerator(1, 1); long id = idGenerator.nextId(); System.out.println(id); ``` 这将生成一个唯一的64位数字作为GUID。在此示例中,`datacenterId`和`workerId`都设置为1,可以根据需要更改它们。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值