예제 #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
파일: XIWindower.cs 프로젝트: anondev/XIACE
        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
파일: Player.cs 프로젝트: ff11mail/ff11rcm
 public Player(int pid)
 {
     Process proc = Process.GetProcessById(pid);
     pol = new PolProcess(proc);
     Read();
 }
예제 #4
0
파일: Player.cs 프로젝트: ff11mail/ff11rcm
 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
파일: Fishing.cs 프로젝트: ff11mail/ff11rcm
 public Fishing(int pid)
 {
     Process proc = Process.GetProcessById(pid);
     pol = new PolProcess(proc);
 }
예제 #8
0
파일: Fishing.cs 프로젝트: ff11mail/ff11rcm
 public Fishing(Process proc)
 {
     pol = new PolProcess(proc);
 }