示例#1
0
文件: XIACE.cs 项目: ff11mail/ff11rcm
 /// <summary>
 /// Pol.EXEのプロセスリスト
 /// </summary>
 /// <returns></returns>
 public static PolProcess[] ListPolProcess()
 {
     Process[] proc = Process.GetProcessesByName("pol");
     PolProcess[] pol = new PolProcess[proc.Length];
     for (int i = 0; i < proc.Length; i++)
     {
         pol[i] = new PolProcess(proc[i]);
     }
     return pol;
 }
示例#2
0
        public XIWindower(int pid)
            : base(pid)
        {
            this._Pid = pid;

            Process p = Process.GetProcessById((int) pid);
            p.Exited += new EventHandler(ProcessExitedEventHandler);

            this._pol = new PolProcess(p);

            this.Player = new Player(this);
            this.Inventory = new Inventory(this);
            this.Fishing = new Fishing(this);
            this.Craft = new Craft(this);
            this.Menu = new Menu(this);
        }
示例#3
0
 public Player(int pid)
 {
     Process proc = Process.GetProcessById(pid);
     pol = new PolProcess(proc);
     Read();
 }
示例#4
0
 public Player(Process proc)
 {
     pol = new PolProcess(proc); // PlayerInfoの場所にアドレスをセット
     Read();
 }
示例#5
0
 public Inventory(int pid)
 {
     Process proc = Process.GetProcessById(pid);
     pol = new PolProcess(proc);
 }
示例#6
0
 public Inventory(Process proc)
 {
     pol = new PolProcess(proc);
 }
示例#7
0
 public Fishing(int pid)
 {
     Process proc = Process.GetProcessById(pid);
     pol = new PolProcess(proc);
 }
示例#8
0
 public Fishing(Process proc)
 {
     pol = new PolProcess(proc);
 }