This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ### | |
| # amdaemon.exe 批量反向重命名 | |
| # sega有个开发习惯,存在一个log函数,其第一个参数则是调用方的函数名字。利用此规则可以轻松反向给函数重命名 | |
| # 提高amd调试坐牢效率 | |
| # | |
| # 使用方法: | |
| # * 打开 View -> Open subviews -> Strings ,搜索字符串"amDnsInit" | |
| # * 按下X找到对应的xRef位置,是一个lea指令, 此lea指令下面最先出现的call sub_xxxxxxx()就是日志函数 | |
| # * 填写下面的printBFuncName成那个日志函数名 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using System; | |
| using System.Buffers; | |
| using System.IO; | |
| using System.Linq; | |
| namespace SVOFileBatchPicker | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using System; | |
| using System.Collections.Generic; | |
| using System.Collections.ObjectModel; | |
| using System.ComponentModel; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| using System.Windows; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace ConsoleApp20 | |
| { | |
| class Program:IComparer<(int,int,int,int)> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using ReOsuStoryBoardPlayer; | |
| using ReOsuStoryBoardPlayer.Base; | |
| using ReOsuStoryBoardPlayer.Commands; | |
| using ReOsuStoryBoardPlayer.Parser; | |
| using ReOsuStoryBoardPlayer.Parser.Reader; | |
| using ReOsuStoryBoardPlayer.ProgramCommandParser; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <script src="./js/pixi.min.js"></script> | |
| <script src="./js/cubism2/live2d.min.js"></script> | |
| <script src="./js/cubism2/pixi-live2d.min.js"></script> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using System; | |
| using System.Collections.Generic; | |
| using System.Drawing; | |
| using System.Drawing.Imaging; | |
| using System.Drawing.Text; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace EasyStoryboardHelperUtils | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using System; | |
| using System.Collections.Generic; | |
| using Newtonsoft.Json.Linq; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Text; | |
| using System.Text.RegularExpressions; | |
| using System.Threading.Tasks; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace ConsoleApp3 | |
| { | |
| class Program | |
| { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | public static void printRepeatChar(string text){ | |
| char c=(char)0, pc=(char)0; | |
| int count = 0,position=-1; | |
| Console.WriteLine($"raw >\"{text}\""); | |
| Console.Write("translate >\""); | |
| while (true) | |
| { | |
| if (++position >= text.Length) | |
| break; |