Skip to content

Commit

Permalink
v5.7.4, XvT briefing TPS
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeG621 committed Aug 27, 2022
1 parent f67850e commit 03790a9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("5.7.3.*")]
[assembly: AssemblyVersion("5.7.4.*")]
7 changes: 5 additions & 2 deletions Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@ Idmr.Platform.dll

Author: Michael Gaisser ([email protected])
Contributors: Random Starfighter (JB)
Version: 5.7.3
Date: 2022.06.19
Version: 5.7.4
Date: 2022.08.27

Library for editing LucasArts *.XWI and *.TIE mission files for Xwing95, TIE95, XvT and XWA

=========
Version History

v5.7.4, 27 Aug 2022
- (XxT) Briefing TicksPerSecond updated to 21 (0x15) instead of 20.

v5.7.3, 19 Jun 2022
- (XWA) Message length limit increased to 68.

Expand Down
12 changes: 7 additions & 5 deletions Xvt/Briefing.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
/*
* Idmr.Platform.dll, X-wing series mission library file, XW95-XWA
* Copyright (C) 2009-2020 Michael Gaisser ([email protected])
* Copyright (C) 2009-2022 Michael Gaisser ([email protected])
* Licensed under the MPL v2.0 or later
*
* Full notice in ../help/Idmr.Platform.chm
* Version: 4.0
* Version: 5.7.4
*/

/* CHANGELOG
* v5.7.4, 220827
* [FIX] TicksPerSecond from 0x14 to 0x15
* v4.0, 200809
* [UPD] Teams now auto-property
* v3.0, 180903
Expand All @@ -28,8 +30,8 @@ namespace Idmr.Platform.Xvt
public class Briefing : BaseBriefing
{
/// <summary>Frames per second for briefing animation</summary>
/// <remarks>Value is <b>20 (0x14)</b></remarks>
public const int TicksPerSecond = 0x14;
/// <remarks>Value is <b>21 (0x15)</b></remarks>
public const int TicksPerSecond = 0x15;
/// <summary>Maximum number of events that can be held</summary>
/// <remarks>Value is <b>202 (0xCA)</b></remarks>
public const int EventQuantityLimit = 0xCA;
Expand All @@ -39,7 +41,7 @@ public Briefing()
{ //initialize
_eventParameters = new EventParameters();
_platform = MissionFile.Platform.XvT;
Length = 0x384; // default to 45 seconds
Length = 0x3B1; // default to 45 seconds
_events = new short[0x190];
_briefingTags = new string[0x20];
_briefingStrings = new string[0x20];
Expand Down
1 change: 1 addition & 0 deletions Xwa/Mission.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ public enum LogoEnum : byte {
RogueSquadron,
/// <summary>Squadron 4 logo</summary>
FamilyTransport,
/// <summary>Unknown logo</summary>
Unknown_C
}
/// <summary>Mission starting <see cref="MissionType"/> (aka Hangar)</summary>
Expand Down

0 comments on commit 03790a9

Please sign in to comment.