-
Notifications
You must be signed in to change notification settings - Fork 51
/
AirCoupler.cpp
91 lines (83 loc) · 1.79 KB
/
AirCoupler.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
This Source Code Form is subject to the
terms of the Mozilla Public License, v.
2.0. If a copy of the MPL was not
distributed with this file, You can
obtain one at
http://mozilla.org/MPL/2.0/.
*/
#include "stdafx.h"
#include "AirCoupler.h"
#include "Model3d.h"
#include "parser.h"
AirCoupler::AirCoupler()
{
Clear();
}
AirCoupler::~AirCoupler()
{
}
/**
* \return 1 when \(straight\) TModel3d \c only ModelOn exists
* \return 2 when \(slanted\) TModel3d \c ModelxOn exists
* \return 0 when neither of them exist
*/
int AirCoupler::GetStatus()
{
if (ModelxOn)
return 2;
if (ModelOn)
return 1;
return 0;
}
/**
* Reset pointers and variables.
*/
void AirCoupler::Clear()
{
ModelOn = NULL;
ModelOff = NULL;
ModelxOn = NULL;
On = false;
xOn = false;
}
/**
* Looks for submodels in the model and updates pointers.
*/
void AirCoupler::Init(std::string const &asName, TModel3d *Model)
{
if (!Model)
return;
ModelOn = Model->GetFromName(asName + "_on"); // Straight connect.
ModelOff = Model->GetFromName(asName + "_off"); // Not connected. Hung up.
ModelxOn = Model->GetFromName(asName + "_xon"); // Slanted connect.
}
/**
* Gets name of submodel \(from cParser \b *Parser\),
* looks for it in the TModel3d \b *Model and update pointers.
* If submodel is not found, reset pointers.
*/
void AirCoupler::Load(cParser *Parser, TModel3d *Model)
{
std::string name = Parser->getToken<std::string>();
if(Model)
{
Init(name, Model);
}
else
{
ModelOn = NULL;
ModelxOn = NULL;
ModelOff = NULL;
}
}
// Update submodels visibility.
void AirCoupler::Update()
{
if (ModelOn)
ModelOn->iVisible = On;
if (ModelOff)
ModelOff->iVisible = !(On || xOn);
if (ModelxOn)
ModelxOn->iVisible = xOn;
}