rename item id

This commit is contained in:
Zichao Lin 2022-07-24 21:45:26 +08:00
parent 7126a5e350
commit dda58ee6ce
3 changed files with 20 additions and 19 deletions

@ -10,9 +10,9 @@ TinyEurocat::TinyEurocat(void) : CPlugIn ( COMPATIBILITY_CODE,
"Future Sim Studio", "Future Sim Studio",
"Copr. 2022 Future Sim Studio" ) "Copr. 2022 Future Sim Studio" )
{ {
RegisterTagItemType("Metric / Current Altitude", TAG_ITEM_MET_CURR_ALT); RegisterTagItemType("Metric / Current Altitude", ITEM_MET_AFL);
RegisterTagItemType("Metric / Cleared Altitude", TAG_ITEM_MET_ASS_ALT); RegisterTagItemType("Metric / Cleared Altitude", ITEM_MET_CFL);
RegisterTagItemType("Metric / Current Speed", TAG_ITEM_MET_CURR_SPD); RegisterTagItemType("Metric / Current Speed", ITEM_MET_GS);
} }
void TinyEurocat::OnGetTagItem( CFlightPlan FlightPlan, void TinyEurocat::OnGetTagItem( CFlightPlan FlightPlan,
@ -24,11 +24,11 @@ void TinyEurocat::OnGetTagItem( CFlightPlan FlightPlan,
COLORREF *pRGB, COLORREF *pRGB,
double *pFontSize ) double *pFontSize )
{ {
int maalt, mcalt, mcspd;
switch (ItemCode) switch (ItemCode)
{ {
int maalt, mcalt, mcspd;
char tmpstr[15]; char tmpstr[15];
case TAG_ITEM_MET_ASS_ALT: case ITEM_MET_CFL:
maalt = FlightPlan.GetClearedAltitude() * 0.3048 / 10; maalt = FlightPlan.GetClearedAltitude() * 0.3048 / 10;
if (maalt > 0) if (maalt > 0)
{ {
@ -40,12 +40,12 @@ void TinyEurocat::OnGetTagItem( CFlightPlan FlightPlan,
strcpy(sItemString, " "); strcpy(sItemString, " ");
} }
break; break;
case TAG_ITEM_MET_CURR_ALT: case ITEM_MET_AFL:
mcalt = RadarTarget.GetPosition().GetPressureAltitude() * 0.3048 / 10; mcalt = RadarTarget.GetPosition().GetPressureAltitude() * 0.3048 / 10;
itoa(mcalt, tmpstr, 10); itoa(mcalt, tmpstr, 10);
sprintf(sItemString, "%04s", tmpstr); sprintf(sItemString, "%04s", tmpstr);
break; break;
case TAG_ITEM_MET_CURR_SPD: case ITEM_MET_GS:
mcspd = RadarTarget.GetPosition().GetReportedGS() * 1.852; mcspd = RadarTarget.GetPosition().GetReportedGS() * 1.852;
mcspd /= 10; mcspd /= 10;
itoa(mcspd, tmpstr, 10); itoa(mcspd, tmpstr, 10);

@ -3,9 +3,9 @@
using namespace EuroScopePlugIn; using namespace EuroScopePlugIn;
const int TAG_ITEM_MET_CURR_ALT = 1; const int ITEM_MET_AFL = 1;
const int TAG_ITEM_MET_ASS_ALT = 2; const int ITEM_MET_CFL = 2;
const int TAG_ITEM_MET_CURR_SPD = 3; const int ITEM_MET_GS = 3;
class TinyEurocat : public CPlugIn class TinyEurocat : public CPlugIn
{ {

@ -14,6 +14,7 @@
<ProjectGuid>{E1145C92-0713-4553-85D3-1D20417C2989}</ProjectGuid> <ProjectGuid>{E1145C92-0713-4553-85D3-1D20417C2989}</ProjectGuid>
<RootNamespace>TinyEurocat</RootNamespace> <RootNamespace>TinyEurocat</RootNamespace>
<Keyword>MFCDLLProj</Keyword> <Keyword>MFCDLLProj</Keyword>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup> </PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">