mirror of
https://github.com/GittyMac/OpenFK.git
synced 2026-04-23 09:27:24 -05:00
Some polishing
This commit is contained in:
parent
c54113f45c
commit
ca75c89a89
2
OpenFK/ConfigForm.Designer.cs
generated
2
OpenFK/ConfigForm.Designer.cs
generated
|
|
@ -120,7 +120,7 @@
|
|||
// USBToggle
|
||||
//
|
||||
this.USBToggle.AutoSize = true;
|
||||
this.USBToggle.Location = new System.Drawing.Point(15, 104);
|
||||
this.USBToggle.Location = new System.Drawing.Point(12, 104);
|
||||
this.USBToggle.Name = "USBToggle";
|
||||
this.USBToggle.Size = new System.Drawing.Size(88, 17);
|
||||
this.USBToggle.TabIndex = 8;
|
||||
|
|
|
|||
|
|
@ -85,14 +85,6 @@ namespace OpenFK
|
|||
}
|
||||
//End of Main.SWF check
|
||||
|
||||
//Checks if the main AS3 SWF exists
|
||||
if (!File.Exists(Directory.GetCurrentDirectory() + @"\MainAS3.swf"))
|
||||
{
|
||||
MessageBox.Show("Could not find MainAS3.swf!", "OpenFK", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
Application.Exit();
|
||||
}
|
||||
//End of MainAS3.SWF check
|
||||
|
||||
//RP Initialize
|
||||
if (Settings.Default.RPC == true)
|
||||
{
|
||||
|
|
@ -110,12 +102,6 @@ namespace OpenFK
|
|||
Debug.WriteLine("Main.swf is Loaded");
|
||||
AS2Container.FSCommand += new _IShockwaveFlashEvents_FSCommandEventHandler(flashPlayer_FSCommand); //This sets up the FSCommand handler, which CCommunicator likes to use a lot.
|
||||
|
||||
//BityByte
|
||||
if (Settings.Default.customF == true) //If using no USB
|
||||
{
|
||||
setVar(@"<bitybyte id=""FFFFFFF000000000"" />");
|
||||
}
|
||||
|
||||
AS3Container.Quality = Settings.Default.Quality;
|
||||
AS3Container.ScaleMode = Settings.Default.ScaleMode;
|
||||
AS3Container.Movie = Directory.GetCurrentDirectory() + @"\MainAS3.swf"; //Sets MainAS3.swf as the Flash Movie to Play.
|
||||
|
|
@ -146,6 +132,7 @@ namespace OpenFK
|
|||
MBData.FileName = Directory.GetParent(Directory.GetCurrentDirectory()) + @"\MegaByte\" + "MegaByte.exe";
|
||||
MBData.Arguments = "-MBRun -MBDebug";
|
||||
MBData.UseShellExecute = false;
|
||||
MBData.WindowStyle = ProcessWindowStyle.Minimized;
|
||||
MBRun.StartInfo = MBData;
|
||||
MBRun.Start();
|
||||
InitTimer();
|
||||
|
|
@ -175,10 +162,10 @@ namespace OpenFK
|
|||
byte[] buffer = new byte[4]; //BittyID is 4 bytes
|
||||
|
||||
//This reads the memory to fetch the current bittyID
|
||||
ReadProcessMemory((int)processHandle, 0x0049F020, buffer, buffer.Length, ref bytesRead);
|
||||
ReadProcessMemory((int)processHandle, 0x0049F020, buffer, buffer.Length, ref bytesRead); //With address
|
||||
Int32 baseValue = BitConverter.ToInt32(buffer, 0);
|
||||
|
||||
Int32 firstAddress = baseValue + 0xF88;
|
||||
Int32 firstAddress = baseValue + 0xF88; //With pointer
|
||||
ReadProcessMemory((int)processHandle, firstAddress, buffer, buffer.Length, ref bytesRead);
|
||||
Int32 firstValue = BitConverter.ToInt32(buffer, 0);
|
||||
|
||||
|
|
@ -322,6 +309,21 @@ namespace OpenFK
|
|||
// END OF XML LOAD COMMANDS
|
||||
//
|
||||
|
||||
//
|
||||
//LOADED
|
||||
//
|
||||
if(e.args.Contains("<loaded ")){
|
||||
|
||||
//BityByte
|
||||
if (Settings.Default.customF == true) //If using no USB
|
||||
{
|
||||
setVar(@"<bitybyte id=""FFFFFFF000000000"" />");
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
//END OF LOADED
|
||||
//
|
||||
|
||||
//
|
||||
// XML SAVE COMMANDS
|
||||
|
|
@ -379,6 +381,7 @@ namespace OpenFK
|
|||
//TODO - Fully load AS3 Files
|
||||
AS3Container.Play();
|
||||
AS2Container.SendToBack();
|
||||
setVar(@"<as3_transit idfrom=""%d"" xml=""%s"" />");
|
||||
}
|
||||
|
||||
//
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user