Propagate cdNumber change

Include the cdNumber counting change in the text flavour PJM code.
This commit is contained in:
Iris Ward 2015-09-23 15:38:52 +01:00
parent 33c3d8b2fc
commit 217f425f09
1 changed files with 10 additions and 1 deletions

View File

@ -130,6 +130,10 @@ namespace BizHawk.Client.Common
Octoshock.SyncSettings syncsettings = new Octoshock.SyncSettings();
syncsettings.Controllers = new[] { info.player1Type, info.player2Type };
// Annoying kludge to force the json serializer to serialize the type name for "o" object.
// For just the "o" object to have type information, it must be cast to a superclass such
// that the TypeNameHandling.Auto decides to serialize the type as well as the object
// contents. As such, the object cast is NOT redundant
var jsonSettings = new JsonSerializerSettings
{
TypeNameHandling = TypeNameHandling.Auto
@ -271,9 +275,10 @@ namespace BizHawk.Client.Common
controllers.Type = Octoshock.CreateControllerDefinition(settings);
string[] buttons = { "Select", "L3", "R3", "Start", "Up", "Right", "Down", "Left",
"L2", "R2", "L1", "R1", "Triangle", "Circle", "Cross", "Square"};
"L2", "R2", "L1", "R1", "Triangle", "Circle", "Cross", "Square"};
bool isCdTrayOpen = false;
int cdNumber = 1;
for (int frame = 0; frame < info.frameCount; ++frame)
{
@ -360,6 +365,7 @@ namespace BizHawk.Client.Common
if (isCdTrayOpen)
{
controllers["Close"] = true;
cdNumber++;
}
else
{
@ -373,6 +379,9 @@ namespace BizHawk.Client.Common
controllers["Open"] = false;
}
Tuple<string, float> discSelect = new Tuple<string, float>("Disc Select", cdNumber);
controllers.AcceptNewFloats(new[] { discSelect });
if ((controlState & 0xFC) != 0)
{
Result.Warnings.Add("Ignored toggle hack flag on frame " + frame.ToString());