Skip to content

Commit acc815f

Browse files
committed
Update/XPMP2: relOp.txt, Multicast fixes
1 parent b0b029e commit acc815f

File tree

4 files changed

+75
-3
lines changed

4 files changed

+75
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ XPMP2-Sample/
7878
MapIcons.png
7979
Obj8DataRefs.txt
8080
    related.txt
81+
relOp.txt
8182
```
8283

8384
The individual files listed above under the `Resources` folder, like `Doc8643.txt`, are available

XPMP2-Sample.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
/// @see https://www.icao.int/publications/DOC8643/Pages/Search.aspx for ICAO aircraft types
8181
/// @see https://forums.x-plane.org/index.php?/files/file/37041-bluebell-obj8-csl-packages/ for the Bluebell package, which includes the models named here
8282
std::string PLANE_MODEL[3][3] = {
83-
{ "A321", "", "" }, // Not specifying the airline means: XPMP2 will randomly take any airline's model - with every switch of models
83+
{ "A321", "EUK", "" }, // Don't have A321_EUK, shall find A320_EIN via related.txt and relOp.txt
8484
{ "B06", "TXB", "" },
8585
{ "DH8D", "BER", "" },
8686
};
@@ -114,7 +114,7 @@ int CBIntPrefsFunc (const char *, [[maybe_unused]] const char * item, int defaul
114114
if (!strcmp(item, XPMP_CFG_ITM_CONTR_MULTI)) return 1;
115115
#if DEBUG
116116
// in debug version of the plugin we provide most complete log output
117-
if (!strcmp(item, XPMP_CFG_ITM_MODELMATCHING)) return 1;
117+
if (!strcmp(item, XPMP_CFG_ITM_MODELMATCHING)) return 0; // though...no model
118118
if (!strcmp(item, XPMP_CFG_ITM_LOGLEVEL)) return 0; // DEBUG logging level
119119
#endif
120120
// Otherwise we just accept defaults
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1420"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "D607B19809A556E400699BC3"
18+
BuildableName = "XPMP2-Sample.xpl"
19+
BlueprintName = "XPMP2-Sample"
20+
ReferencedContainer = "container:XPMP2-Sample.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
</Testables>
32+
</TestAction>
33+
<LaunchAction
34+
buildConfiguration = "Debug"
35+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37+
launchStyle = "0"
38+
useCustomWorkingDirectory = "NO"
39+
ignoresPersistentStateOnLaunch = "NO"
40+
debugDocumentVersioning = "YES"
41+
debugServiceExtension = "internal"
42+
allowLocationSimulation = "YES">
43+
<PathRunnable
44+
runnableDebuggingMode = "0"
45+
FilePath = "/Users/birger/Applications/X-Plane/11/X-Plane.app">
46+
</PathRunnable>
47+
</LaunchAction>
48+
<ProfileAction
49+
buildConfiguration = "Release"
50+
shouldUseLaunchSchemeArgsEnv = "YES"
51+
savedToolIdentifier = ""
52+
useCustomWorkingDirectory = "NO"
53+
debugDocumentVersioning = "YES">
54+
<MacroExpansion>
55+
<BuildableReference
56+
BuildableIdentifier = "primary"
57+
BlueprintIdentifier = "D607B19809A556E400699BC3"
58+
BuildableName = "XPMP2-Sample.xpl"
59+
BlueprintName = "XPMP2-Sample"
60+
ReferencedContainer = "container:XPMP2-Sample.xcodeproj">
61+
</BuildableReference>
62+
</MacroExpansion>
63+
</ProfileAction>
64+
<AnalyzeAction
65+
buildConfiguration = "Debug">
66+
</AnalyzeAction>
67+
<ArchiveAction
68+
buildConfiguration = "Release"
69+
revealArchiveInOrganizer = "YES">
70+
</ArchiveAction>
71+
</Scheme>

lib/XPMP2

Submodule XPMP2 updated 91 files

0 commit comments

Comments
 (0)