-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPS3MAPI.cs
More file actions
1721 lines (1667 loc) · 60.9 KB
/
Copy pathPS3MAPI.cs
File metadata and controls
1721 lines (1667 loc) · 60.9 KB
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*PS3 MANAGER API
* Copyright (c) 2014 _NzV_.
*
* This code is write by _NzV_ <donm7v@gmail.com>.
* It may be used for any purpose as long as this notice remains intact on all
* source code distributions.
*/
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Text.RegularExpressions;
using System.Windows.Forms;
namespace PS3ManagerAPI
{
public class PS3MAPI
{
public int PS3M_API_PC_LIB_VERSION = 0x0112;
public CORE_CMD Core = new CORE_CMD();
public SERVER_CMD Server = new SERVER_CMD();
public PS3_CMD PS3 = new PS3_CMD();
public PROCESS_CMD Process = new PROCESS_CMD();
public PS3MAPI()
{
Core = new CORE_CMD();
Server = new SERVER_CMD();
PS3 = new PS3_CMD();
Process = new PROCESS_CMD();
}
#region PS3MAPI_CLient
/// <summary>Get PS3 Manager PC Lib Version.</summary>
public string GetLibVersion_Str()
{
string ver = PS3M_API_PC_LIB_VERSION.ToString("X4");
string char1 = ver.Substring(1, 1) + ".";
string char2 = ver.Substring(2, 1) + ".";
string char3 = ver.Substring(3, 1);
return char1 + char2 + char3;
}
/// <summary>
/// Indicates if PS3MAPI is connected
/// </summary>
public bool IsConnected
{
get { return PS3MAPI_Client_Server.IsConnected; }
}
/// <summary>
/// Indicates if PS3MAPI is attached
/// </summary>
public bool IsAttached
{
get { return PS3MAPI_Client_Server.IsAttached; }
}
/// <summary>Connect the target with "ConnectDialog".</summary>
/// <param name="ip">Ip</param>
/// <param name="port">Port</param>
public bool ConnectTarget(string ip, int port = 7887)
{
try
{
PS3MAPI_Client_Server.Connect(ip, port);
return true;
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Connect the target with "ConnectDialog".</summary>
public bool ConnectTarget()
{
ConnectDialog input = new ConnectDialog();
try
{
bool result = false;
if (input.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
result = ConnectTarget(input.txtIp.Text, int.Parse(input.txtPort.Text));
}
if (input != null)
{
input.Dispose();
input = null;
}
return result;
}
catch (Exception ex)
{
if (input != null)
{
input.Dispose();
input = null;
}
throw new Exception(ex.Message, ex);
}
}
/// <summary>Attach to process by pid.</summary>
/// <param name="pid">Process PID</param>
public bool AttachProcess(uint pid)
{
try
{
Process.Process_Pid = pid;
return true;
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Attach to process with "AttachDialog".</summary>
public bool AttachProcess()
{
AttachDialog input = null;
try
{
retry:
bool result = false;
if (input != null)
{
input.Dispose();
input = null;
}
input = new AttachDialog(this);
System.Windows.Forms.DialogResult dialog_result = input.ShowDialog();
if (dialog_result == System.Windows.Forms.DialogResult.OK)
{
string[] split = input.comboBox1.Text.Split(new char[] { '_' });
result = AttachProcess(System.Convert.ToUInt32(split[0], 16));
}
else if (dialog_result == System.Windows.Forms.DialogResult.Retry)
{
goto retry;
}
if (input != null)
{
input.Dispose();
}
return result;
}
catch (Exception ex)
{
if (input != null)
{
input.Dispose();
input = null;
}
throw new Exception(ex.Message, ex);
}
}
/// <summary>Disconnect the target.</summary>
public void DisconnectTarget()
{
try
{
PS3MAPI_Client_Server.Disconnect();
}
catch// (Exception ex)
{
// throw new Exception(ex.Message, ex);
}
}
LogDialog LogDialog = null;
/// <summary>Show log with "LogDialog".</summary>
public void ShowLog()
{
if (LogDialog == null) LogDialog = new LogDialog(this);
LogDialog.Show();
}
/// <summary>Show log with "LogDialog".</summary>
public string Log
{
get { return PS3MAPI_Client_Server.Log; }
}
public class SERVER_CMD
{
/// <summary>
/// Specified Timeout: Defaults to 5000 (5 seconds)
/// </summary>
public int Timeout
{
get { return PS3MAPI_Client_Server.Timeout; }
set { PS3MAPI_Client_Server.Timeout = value; }
}
/// <summary>Get PS3 Manager API Server Version.</summary>
public uint GetVersion()
{
try
{
return PS3MAPI_Client_Server.Server_Get_Version();
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Get PS3 Manager API Server Version.</summary>
public string GetVersion_Str()
{
string ver = PS3MAPI_Client_Server.Server_Get_Version().ToString("X4");
string char1 = ver.Substring(1, 1) + ".";
string char2 = ver.Substring(2, 1) + ".";
string char3 = ver.Substring(3, 1);
return char1 + char2 + char3;
}
}
public class CORE_CMD
{
/// <summary>Get PS3 Manager API Core Version.</summary>
public uint GetVersion()
{
try
{
return PS3MAPI_Client_Server.Core_Get_Version();
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Get PS3 Manager API Core Version.</summary>
public string GetVersion_Str()
{
string ver = PS3MAPI_Client_Server.Core_Get_Version().ToString("X4");
string char1 = ver.Substring(1, 1) + ".";
string char2 = ver.Substring(2, 1) + ".";
string char3 = ver.Substring(3, 1);
return char1 + char2 + char3;
}
}
public class PS3_CMD
{
/// <summary>Get PS3 Firmware Version.</summary>
public uint GetFirmwareVersion()
{
try
{
return PS3MAPI_Client_Server.PS3_GetFwVersion();
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Get PS3 Firmware Version.</summary>
public string GetFirmwareVersion_Str()
{
string ver = PS3MAPI_Client_Server.PS3_GetFwVersion().ToString("X4");
string char1 = ver.Substring(1, 1) + ".";
string char2 = ver.Substring(2, 1);
string char3 = ver.Substring(3, 1);
return char1 + char2 + char3;
}
/// <summary>Get PS3 Firmware Type.</summary>
public string GetFirmwareType()
{
try
{
return PS3MAPI_Client_Server.PS3_GetFirmwareType();
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
public enum PowerFlags
{
ShutDown,
QuickReboot,
SoftReboot,
HardReboot
}
/// <summary>Shutdown Or Reboot PS3.</summary>
/// <param name="flag">Shutdown, QuickReboot, SoftReboot, HardReboot</param>
public void Power(PowerFlags flag)
{
try
{
if (flag == PowerFlags.ShutDown) PS3MAPI_Client_Server.PS3_Shutdown();
else if (flag == PowerFlags.QuickReboot) PS3MAPI_Client_Server.PS3_Reboot();
else if (flag == PowerFlags.SoftReboot) PS3MAPI_Client_Server.PS3_SoftReboot();
else if (flag == PowerFlags.HardReboot) PS3MAPI_Client_Server.PS3_HardReboot();
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>PS3 VSH Notify.</summary>
/// <param name="msg)">Your message</param>
public void Notify(string msg)
{
try
{
PS3MAPI_Client_Server.PS3_Notify(msg);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
public enum BuzzerMode
{
Single,
Double,
Triple
}
/// <summary>Ring PS3 Buzzer.</summary>
/// <param name="mode">Simple, Double, Continuous</param>
public void RingBuzzer(BuzzerMode mode)
{
try
{
if (mode == BuzzerMode.Single) PS3MAPI_Client_Server.PS3_Buzzer(1);
else if (mode == BuzzerMode.Double) PS3MAPI_Client_Server.PS3_Buzzer(2);
else if (mode == BuzzerMode.Triple) PS3MAPI_Client_Server.PS3_Buzzer(3);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
public enum LedColor
{
Red = 0,
Green = 1,
Yellow = 2
}
public enum LedMode
{
Off = 0,
On = 1,
BlinkFast = 2,
BlinkSlow = 3
}
/// <summary>PS3 Led.</summary>
/// <param name="color">Red, Green, Yellow</param>
/// <param name="mode">Off, On, BlinkFast, BlinkSlow</param>
public void Led(LedColor color, LedMode mode)
{
try
{
PS3MAPI_Client_Server.PS3_Led(Convert.ToInt32(color), Convert.ToInt32(mode));
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Get PS3 Temperature.</summary>
/// <param name="cpu">Return value for the cpu temperature in Celsius.</param>
/// <param name="rsx">Return value for the rsx temperature in Celsius.</param>
public void GetTemperature( out uint cpu, out uint rsx)
{
cpu = 0; rsx = 0;
try
{
PS3MAPI_Client_Server.PS3_GetTemp(out cpu, out rsx);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Disable PS3 Syscall.</summary>
/// <param name="num">Syscall number</param>
public void DisableSyscall(int num)
{
try
{
PS3MAPI_Client_Server.PS3_DisableSyscall(num);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Return true if this syscall is enbaled</summary>
/// <param name="num">Syscall number</param>
public bool CheckSyscall(int num)
{
try
{
return PS3MAPI_Client_Server.PS3_CheckSyscall(num);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
public enum Syscall8Mode
{
Enabled = 0,
Only_CobraMambaAndPS3MAPI_Enabled = 1,
Only_PS3MAPI_Enabled = 2,
FakeDisabled = 3,
Disabled = 4
}
/// <summary>Partial Disable PS3 Syscall 8.</summary>
/// <param name="mode">Enabled, Only Cobra and PS3M_API features enabled, Only PS3M_API features enabled, Fake Disable</param>
public void PartialDisableSyscall8(Syscall8Mode mode)
{
try
{
if (mode == Syscall8Mode.Enabled) PS3MAPI_Client_Server.PS3_PartialDisableSyscall8(0);
else if (mode == Syscall8Mode.Only_CobraMambaAndPS3MAPI_Enabled) PS3MAPI_Client_Server.PS3_PartialDisableSyscall8(1);
else if (mode == Syscall8Mode.Only_PS3MAPI_Enabled) PS3MAPI_Client_Server.PS3_PartialDisableSyscall8(2);
else if (mode == Syscall8Mode.FakeDisabled) PS3MAPI_Client_Server.PS3_PartialDisableSyscall8(3);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Remove COBRA/MAMBA Hook.</summary>
public Syscall8Mode PartialCheckSyscall8()
{
try
{
if (PS3MAPI_Client_Server.PS3_PartialCheckSyscall8() == 0) return Syscall8Mode.Enabled;
else if (PS3MAPI_Client_Server.PS3_PartialCheckSyscall8() == 1) return Syscall8Mode.Only_CobraMambaAndPS3MAPI_Enabled;
else if (PS3MAPI_Client_Server.PS3_PartialCheckSyscall8() == 2) return Syscall8Mode.Only_PS3MAPI_Enabled;
else return Syscall8Mode.FakeDisabled;
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
public void RemoveHook()
{
try
{
PS3MAPI_Client_Server.PS3_RemoveHook();
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Clear PS3 History.</summary>
/// <param name="include_directory">If set to true, "unsafe" directory will be also deleted.</param>
public void ClearHistory(bool include_directory = true)
{
try
{
PS3MAPI_Client_Server.PS3_ClearHistory(include_directory);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Check Partial Syscall8 disable</summary>
}
public class PROCESS_CMD
{
public MEMORY_CMD Memory = new MEMORY_CMD();
public MODULES_CMD Modules = new MODULES_CMD();
public PROCESS_CMD()
{
Memory = new MEMORY_CMD();
Modules = new MODULES_CMD();
}
/// <summary>
/// Return all process_pid
/// </summary>
public uint[] Processes_Pid
{
get { return PS3MAPI_Client_Server.Processes_Pid; }
}
/// <summary>
/// Return current attached process_pid
/// </summary>)
public uint Process_Pid
{
get { return PS3MAPI_Client_Server.Process_Pid; }
set { PS3MAPI_Client_Server.Process_Pid = value; }
}
/// <summary>Get a pid list of all runing processes.</summary>
public uint[] GetPidProcesses()
{
try
{
return PS3MAPI_Client_Server.Process_GetPidList();
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Get name of this process.</summary>
/// <param name="pid">Process Pid</param>
public string GetName(uint pid)
{
try
{
return PS3MAPI_Client_Server.Process_GetName(pid);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
public class MEMORY_CMD
{
/// <summary>Set memory to the attached process.</summary>
/// <param name="pid">Process Pid</param>
/// <param name="Address">Address</param>
/// <param name="Bytes">Bytes</param>
public void Set(uint Pid, uint Address, byte[] Bytes)
{
try
{
PS3MAPI_Client_Server.Memory_Set(Pid, Address, Bytes);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Get memory from the attached process.</summary>
/// <param name="pid">Process Pid</param>
/// <param name="Address">Address</param>
/// <param name="Bytes">Bytes</param>
public void Get(uint Pid, uint Address, byte[] Bytes)
{
try
{
PS3MAPI_Client_Server.Memory_Get(Pid, Address, Bytes);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Get memory from the attached process.</summary>
/// <param name="pid">Process Pid</param>
/// <param name="Address">Address</param>
/// <param name="Length">Length</param>
public byte[] Get(uint Pid, uint Address, uint Length)
{
try
{
byte[] buffer = new byte[Length];
PS3MAPI_Client_Server.Memory_Get(Pid, Address, buffer);
return buffer;
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
}
public class MODULES_CMD
{
/// <summary>
/// Return all modules_prx_id
/// </summary>
public int[] Modules_Prx_Id
{
get { return PS3MAPI_Client_Server.Modules_Prx_Id; }
}
/// <summary>Get a prx_id list of all modules for this process.</summary>
/// <param name="pid">Process Pid</param>
public int[] GetPrxIdModules(uint pid)
{
try
{
return PS3MAPI_Client_Server.Module_GetPrxIdList(pid);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Get name of this module</summary>
/// <param name="pid">Process Pid</param>
/// <param name="prxid">Module Prx_id</param>
public string GetName(uint pid, int prxid)
{
try
{
return PS3MAPI_Client_Server.Module_GetName(pid, prxid);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Get filename of this module</summary>
/// <param name="pid">Process Pid</param>
/// <param name="prxid">Module Prx_id</param>
public string GetFilename(uint pid, int prxid)
{
try
{
return PS3MAPI_Client_Server.Module_GetFilename(pid, prxid);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Load a module.</summary>
/// <param name="pid">Process Pid</param>
/// <param name="path">Path of the plugin to load.</param>
public void Load(uint pid, string path)
{
try
{
PS3MAPI_Client_Server.Module_Load(pid, path);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
/// <summary>Unload a module.</summary>
/// <param name="pid">Process Pid</param>
/// <param name="prxid">Module Prx_id</param>
public void Unload(uint pid, int prxid)
{
try
{
PS3MAPI_Client_Server.Module_Unload(pid, prxid);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
}
}
}
#endregion PS3MAPI_CLient
#region PS3MAPI_Client_Web
internal class PS3MAPI_Client_Web
{
//Not Yet
}
#endregion PS3MAPI_Client_Web
#region PS3MAPI_Client_Server
internal class PS3MAPI_Client_Server
{
#region Private Members
static private int ps3m_api_server_minversion = 0x0111;
static private PS3MAPI_ResponseCode eResponseCode;
static private string sResponse;
static private string sMessages = "";
static private string sServerIP = "";
static private int iPort = 7887;
static private string sBucket = "";
static private int iTimeout = 5000; // 5 Second
static private uint iPid = 0;
static private uint[] iprocesses_pid = new uint[16];
static private int[] imodules_prx_id = new int[64];
static private string sLog = "";
#endregion Private Members
#region Internal Members
static internal Socket main_sock;
static internal Socket listening_sock;
static internal Socket data_sock;
static internal IPEndPoint main_ipEndPoint;
static internal IPEndPoint data_ipEndPoint;
internal enum PS3MAPI_ResponseCode
{
DataConnectionAlreadyOpen = 125,
MemoryStatusOK = 150,
CommandOK = 200,
RequestSuccessful = 226,
EnteringPassiveMode = 227,
PS3MAPIConnected = 220,
PS3MAPIConnectedOK = 230,
MemoryActionCompleted = 250,
MemoryActionPended = 350
}
#endregion Internal Members
#region Public Properties
/// <summary>
/// Return all process_pid
/// </summary>
static public string Log
{
get { return sLog; }
}
/// <summary>
/// Return all process_pid
/// </summary>
static public uint[] Processes_Pid
{
get { return iprocesses_pid; }
}
/// <summary>
/// Attached process_pid
/// </summary>
static public uint Process_Pid
{
get { return iPid; }
set { iPid = value; }
}
/// <summary>
/// Return all modules_prx_id
/// </summary>
static public int[] Modules_Prx_Id
{
get { return imodules_prx_id; }
}
/// <summary>
/// User Specified Timeout: Defaults to 5000 (5 seconds)
/// </summary>
static public int Timeout
{
get { return iTimeout; }
set { iTimeout = value; }
}
/// <summary>
/// Indicates if PS3MAPI is connected
/// </summary>
static public bool IsConnected
{
get { return ((main_sock != null) ? main_sock.Connected : false); }
}
/// <summary>
/// Indicates if PS3MAPI is attached
/// </summary>
static public bool IsAttached
{
get { return ((iPid != 0) ? true : false); }
}
#endregion Public Properties
//SERVER---------------------------------------------------------------------------------
internal static void Connect()
{
Connect(sServerIP, iPort);
}
internal static void Connect(string sServer, int Port)
{
sServerIP = sServer;
iPort = Port;
if (Port.ToString().Length == 0)
{
throw new Exception("Unable to Connect - No Port Specified.");
}
if (sServerIP.Length == 0)
{
throw new Exception("Unable to Connect - No Server Specified.");
}
if (main_sock != null)
{
if (main_sock.Connected)
{
return;
}
}
main_sock = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
main_ipEndPoint = new IPEndPoint(Dns.GetHostByName(sServerIP).AddressList[0], Port);
try
{
main_sock.Connect(main_ipEndPoint);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
ReadResponse();
if (eResponseCode != PS3MAPI_ResponseCode.PS3MAPIConnected)
{
Fail();
}
ReadResponse();
if (eResponseCode != PS3MAPI_ResponseCode.PS3MAPIConnectedOK)
{
Fail();
}
if (Server_GetMinVersion() != ps3m_api_server_minversion)
{
Disconnect();
throw new Exception("PS3M_API_PC_LIB OUTDATED! PLEASE UPDATE.");
}
return;
}
internal static void Disconnect()
{
CloseDataSocket();
if (main_sock != null)
{
if (main_sock.Connected)
{
SendCommand("DISCONNECT");
iPid = 0;
main_sock.Close();
}
main_sock = null;
}
main_ipEndPoint = null;
}
internal static uint Server_Get_Version()
{
if (IsConnected)
{
SendCommand("SERVER GETVERSION");
switch (eResponseCode)
{
case PS3MAPI_ResponseCode.RequestSuccessful:
case PS3MAPI_ResponseCode.CommandOK:
break;
default:
Fail();
break;
}
return Convert.ToUInt32(sResponse);
}
else
{
throw new Exception("PS3MAPI not connected!");
}
}
internal static uint Server_GetMinVersion()
{
if (IsConnected)
{
SendCommand("SERVER GETMINVERSION");
switch (eResponseCode)
{
case PS3MAPI_ResponseCode.RequestSuccessful:
case PS3MAPI_ResponseCode.CommandOK:
break;
default:
Fail();
break;
}
return Convert.ToUInt32(sResponse);
}
else
{
throw new Exception("PS3MAPI not connected!");
}
}
//CORE-----------------------------------------------------------------------------------
internal static uint Core_Get_Version()
{
if (IsConnected)
{
SendCommand("CORE GETVERSION");
switch (eResponseCode)
{
case PS3MAPI_ResponseCode.RequestSuccessful:
case PS3MAPI_ResponseCode.CommandOK:
break;
default:
Fail();
break;
}
return Convert.ToUInt32(sResponse);
}
else
{
throw new Exception("PS3MAPI not connected!");
}
}
internal static uint Core_GetMinVersion()
{
if (IsConnected)
{
SendCommand("CORE GETMINVERSION");
switch (eResponseCode)
{
case PS3MAPI_ResponseCode.RequestSuccessful:
case PS3MAPI_ResponseCode.CommandOK:
break;
default:
Fail();
break;
}
return Convert.ToUInt32(sResponse);
}
else
{
throw new Exception("PS3MAPI not connected!");
}
}
//PS3------------------------------------------------------------------------------------
internal static uint PS3_GetFwVersion()
{
if (IsConnected)
{
SendCommand("PS3 GETFWVERSION");
switch (eResponseCode)
{
case PS3MAPI_ResponseCode.RequestSuccessful:
case PS3MAPI_ResponseCode.CommandOK:
break;
default:
Fail();
break;
}
return Convert.ToUInt32(sResponse);
}
else
{
throw new Exception("PS3MAPI not connected!");
}
}
internal static string PS3_GetFirmwareType()
{
if (IsConnected)
{
SendCommand("PS3 GETFWTYPE");
switch (eResponseCode)
{
case PS3MAPI_ResponseCode.RequestSuccessful:
case PS3MAPI_ResponseCode.CommandOK:
break;
default:
Fail();
break;
}
return sResponse;
}
else
{
throw new Exception("PS3MAPI not connected!");
}
}
internal static void PS3_Shutdown()
{
if (IsConnected)
{
SendCommand("PS3 SHUTDOWN");
switch (eResponseCode)
{
case PS3MAPI_ResponseCode.RequestSuccessful:
case PS3MAPI_ResponseCode.CommandOK:
Disconnect();
break;
default:
Fail();
break;
}
}
else
{
throw new Exception("PS3MAPI not connected!");
}
}
internal static void PS3_Reboot()
{
if (IsConnected)
{
SendCommand("PS3 REBOOT");
switch (eResponseCode)
{
case PS3MAPI_ResponseCode.RequestSuccessful: