summaryrefslogtreecommitdiff
path: root/ldmicro/components/dpdt.cpp
diff options
context:
space:
mode:
authorRr422018-05-25 10:13:59 +0530
committerRr422018-05-25 10:13:59 +0530
commitf7669a3fcc87d4f6040257c3dd8708c263331458 (patch)
tree9eb6b47b5911eb1f13776caaa341aab40cabe5e7 /ldmicro/components/dpdt.cpp
parent8deab843fa6d616086955702c77751f631badc0d (diff)
downloadLDMicroGtk-f7669a3fcc87d4f6040257c3dd8708c263331458.tar.gz
LDMicroGtk-f7669a3fcc87d4f6040257c3dd8708c263331458.tar.bz2
LDMicroGtk-f7669a3fcc87d4f6040257c3dd8708c263331458.zip
Added all LDmicro filles to be ported
Diffstat (limited to 'ldmicro/components/dpdt.cpp')
-rw-r--r--ldmicro/components/dpdt.cpp539
1 files changed, 539 insertions, 0 deletions
diff --git a/ldmicro/components/dpdt.cpp b/ldmicro/components/dpdt.cpp
new file mode 100644
index 0000000..c04c901
--- /dev/null
+++ b/ldmicro/components/dpdt.cpp
@@ -0,0 +1,539 @@
+/* DPDT component file
+* Code version: 2.0
+* Version description: Adds latching functionality to component
+* Version steability:
+* GUI -> Stable
+* Functionality -> No known bugs.
+* Bugs:
+* 1. -
+*
+*/
+
+///Includes
+#include <wincodec.h>
+#include <stdio.h>
+//#include <string.h>
+#include <commctrl.h>
+#include <Windowsx.h>
+
+#include "componentstructs.h"
+#include "componentfunctions.h"
+#include "componentimages.h"
+#include "components.h"
+
+///Window handles
+static HWND DPDTState1;
+static HWND DPDTState2;
+static HWND ModeLatchedDPDT;
+static HWND ModeTempDPDT;
+HWND* SettingsDialogDPDT;
+
+///Global variables
+enum DPDT_Pins { in1 = 0, in2, out11, out12, out21, out22 };
+
+///Function definitions
+int InitDpdt(void * ComponentAddress)
+{
+ DpdtStruct* d = (DpdtStruct*)ComponentAddress;
+ d->image = DPDT_1;
+ d->NS1 = TRUE;
+ d->latched = TRUE;
+ d->Volt[in1] = V_OPEN;
+ d->Volt[in2] = V_OPEN;
+ d->Volt[out11] = V_OPEN;
+ d->Volt[out12] = V_OPEN;
+ d->Volt[out21] = V_OPEN;
+ d->Volt[out22] = V_OPEN;
+
+ return DPDT_1;
+}
+
+void SetDpdtIds(int* id, void* ComponentAddress)
+{
+ DpdtStruct* d = (DpdtStruct*)ComponentAddress;
+ d->PinId[in1] = *id++;
+ d->PinId[in2] = *id++;
+ d->PinId[out11] = *id++;
+ d->PinId[out12] = *id++;
+ d->PinId[out21] = *id++;
+ d->PinId[out22] = *id++;
+}
+
+void MakeSettingsDialogDPDT()
+{
+ ///Switch action mode
+ HWND InitLatched = CreateWindowEx(0, WC_BUTTON, ("Action mode"),
+ WS_CHILD | BS_GROUPBOX | WS_VISIBLE | WS_TABSTOP,
+ 7, 3, 120, 65, *SettingsDialogDPDT, NULL, NULL, NULL);
+ FontNice(InitLatched);
+
+ ModeLatchedDPDT = CreateWindowEx(0, WC_BUTTON, ("Latched"),
+ WS_CHILD | BS_AUTORADIOBUTTON | WS_TABSTOP | WS_VISIBLE | WS_GROUP,
+ 16, 21, 100, 20, *SettingsDialogDPDT, NULL, NULL, NULL);
+ FontNice(ModeLatchedDPDT);
+
+ ModeTempDPDT = CreateWindowEx(0, WC_BUTTON, ("Temporary"),
+ WS_CHILD | BS_AUTORADIOBUTTON | WS_TABSTOP | WS_VISIBLE,
+ 16, 41, 100, 20, *SettingsDialogDPDT, NULL, NULL, NULL);
+ FontNice(ModeTempDPDT);
+
+ ///Switch initial status
+ HWND InitOut = CreateWindowEx(0, WC_BUTTON, ("Initial output state"),
+ WS_CHILD | BS_GROUPBOX | WS_VISIBLE | WS_TABSTOP,
+ 140, 3, 120, 65, *SettingsDialogDPDT, NULL, NULL, NULL);
+ FontNice(InitOut);
+
+ DPDTState1 = CreateWindowEx(0, WC_BUTTON, ("State 1"),
+ WS_CHILD | BS_AUTORADIOBUTTON | WS_TABSTOP | WS_VISIBLE | WS_GROUP,
+ 149, 21, 100, 20, *SettingsDialogDPDT, NULL, NULL, NULL);
+ FontNice(DPDTState1);
+
+ DPDTState2 = CreateWindowEx(0, WC_BUTTON, ("State 2"),
+ WS_CHILD | BS_AUTORADIOBUTTON | WS_TABSTOP | WS_VISIBLE,
+ 149, 41, 100, 20, *SettingsDialogDPDT, NULL, NULL, NULL);
+ FontNice(DPDTState2);
+}
+
+void LoadSettings(DpdtStruct* d)
+{
+ if (d->latched)
+ Button_SetCheck(ModeLatchedDPDT, BST_CHECKED);
+ else
+ Button_SetCheck(ModeTempDPDT, BST_CHECKED);
+ if (d->NS1)
+ Button_SetCheck(DPDTState1, BST_CHECKED);
+ else
+ Button_SetCheck(DPDTState2, BST_CHECKED);
+}
+
+BOOL SaveSettings(DpdtStruct* d, void* ImageLocation)
+{
+ if (Button_GetState(ModeLatchedDPDT) == BST_CHECKED)
+ d->latched = TRUE;
+ else
+ d->latched = FALSE;
+
+ if (Button_GetState(DPDTState1) == BST_CHECKED)
+ d->NS1 = TRUE;
+ else if (Button_GetState(DPDTState2) == BST_CHECKED)
+ d->NS1 = FALSE;
+ else
+ {
+ MessageBox(*SettingsDialogDPDT,
+ ("Incomplete"), ("Warning"), MB_OK | MB_ICONWARNING);
+ return FALSE;
+ }
+
+ if (d->NS1)
+ d->image = DPDT_1;
+ else
+ d->image = DPDT_2;
+
+ SetImage(d->image, ImageLocation);
+ RefreshImages();
+
+ return TRUE;
+}
+
+void DpdtSettingsDialog(void* ComponentAddress, void* ImageLocation)
+{
+ DpdtStruct* d = (DpdtStruct*)ComponentAddress;
+ BOOL exitStatus;
+
+ //Create dialog window instance
+ SettingsDialogDPDT = CreateDialogWindow("SPDT Settings Dialog", 100, 100, 263, 145, STYLE_VERTICAL);
+
+ //Make the settings dialog
+ MakeSettingsDialogDPDT();
+
+ //Load settings
+ LoadSettings(d);
+
+ //Show dialog window
+ ShowDialogWindow();
+
+ exitStatus = ProcessDialogWindow();
+ while (exitStatus == FALSE)
+ {
+ exitStatus = SaveSettings(d, ImageLocation);
+ if (exitStatus == TRUE)
+ break;
+ else
+ {
+ exitStatus = TRUE;
+ exitStatus = ProcessDialogWindow();
+ }
+ }
+
+ DestroyWindow(*SettingsDialogDPDT);
+}
+
+//Dynamically check and equalise the voltage on all pins that are connected to DPST at runtime
+double EqualiseRuntimeVoltageDPDT(void* ComponentAdderss, int index, double volt)
+{
+ DpdtStruct* d = (DpdtStruct*)ComponentAdderss;
+
+ ///Check if DPDT switch is in state 1; i.e Input 1 is connected to output11, Input 2 is connected to output21
+ if (d->NS1)
+ {
+ ///If DPDT switch is in state 1 then output12 and output22 will be floating/open
+ if (index == out12)
+ {
+ d->Volt[out12] = V_OPEN;
+ d->Volt[out22] = VoltChange(d->PinId[out22], out22, ComponentAdderss, V_OPEN);
+ }
+ else if (index == out22)
+ {
+ d->Volt[out12] = VoltChange(d->PinId[out12], out12, ComponentAdderss, V_OPEN);
+ d->Volt[out22] = V_OPEN;
+ }
+ else
+ {
+ d->Volt[out12] = VoltChange(d->PinId[out12], out12, ComponentAdderss, V_OPEN);
+ d->Volt[out22] = VoltChange(d->PinId[out22], out22, ComponentAdderss, V_OPEN);
+ }
+
+ double Vin;
+ double Vout;
+
+ ///Get voltages at the connected pins
+ if (index == in1)
+ {
+ Vin = volt;
+ Vout = VoltRequest(d->PinId[out11], ComponentAdderss);
+ }
+ else if (index == out11)
+ {
+ Vin = VoltRequest(d->PinId[in1], ComponentAdderss);
+ Vout = volt;
+ }
+ else
+ {
+ Vin = VoltRequest(d->PinId[in1], ComponentAdderss);
+ Vout = VoltRequest(d->PinId[out11], ComponentAdderss);
+ }
+
+ ///Set 1: input 1, output11, output12
+ ///If either pin is grounded then all pins are set to GND
+ if (Vin == GND || Vout == GND)
+ {
+ d->Volt[out11] = VoltChange(d->PinId[out11], out11, ComponentAdderss, GND);
+ d->Volt[in1] = VoltChange(d->PinId[in1], in1, ComponentAdderss, GND);
+ }
+ ///If Vin is set as open
+ else if (Vin == V_OPEN)
+ d->Volt[in1] = VoltChange(d->PinId[in1], in1, ComponentAdderss, Vout);
+ ///If Vout is set as open
+ else if (Vout == V_OPEN)
+ d->Volt[out11] = VoltChange(d->PinId[out11], out11, ComponentAdderss, Vin);
+ ///If no pin is grounded then all pins are set to the max voltage of the pins
+ else
+ {
+ d->Volt[out11] = VoltChange(d->PinId[out11], out11, ComponentAdderss, max(Vin, Vout));
+ d->Volt[in1] = VoltChange(d->PinId[in1], in1, ComponentAdderss, max(Vin, Vout));
+ }
+
+ ///Get voltages at the connected pins
+ if (index == in2)
+ {
+ Vin = volt;
+ Vout = VoltRequest(d->PinId[out21], ComponentAdderss);
+ }
+ else if (index == out21)
+ {
+ Vin = VoltRequest(d->PinId[in2], ComponentAdderss);
+ Vout = volt;
+ }
+ else
+ {
+ Vin = VoltRequest(d->PinId[in2], ComponentAdderss);
+ Vout = VoltRequest(d->PinId[out21], ComponentAdderss);
+ }
+
+ ///Set 2: input 2, output21, output22
+ ///If either pin is grounded then all pins are set to GND
+ if (Vin == GND || Vout == GND)
+ {
+ d->Volt[out21] = VoltChange(d->PinId[out21], out21, ComponentAdderss, GND);
+ d->Volt[in2] = VoltChange(d->PinId[in2], in2, ComponentAdderss, GND);
+ }
+ ///If Vin is set as open
+ else if (Vin == V_OPEN)
+ d->Volt[in2] = VoltChange(d->PinId[in2], in2, ComponentAdderss, Vout);
+ ///If Vout is set as open
+ else if (Vout == V_OPEN)
+ d->Volt[out21] = VoltChange(d->PinId[out21], out21, ComponentAdderss, Vin);
+ ///If no pin is grounded then all pins are set to the max voltage of the pins
+ else
+ {
+ d->Volt[out21] = VoltChange(d->PinId[out21], out21, ComponentAdderss, max(Vin, Vout));
+ d->Volt[in2] = VoltChange(d->PinId[in2], in2, ComponentAdderss, max(Vin, Vout));
+ }
+ }
+ ///Check if DPDT switch is in state 2; i.e Input 1 is connected to output12, Input 2 is connected to output22
+ else
+ {
+ ///If DPDT switch is in state 2 then output11 and output21 will be floating/open
+ if (index == out11)
+ {
+ d->Volt[out11] = V_OPEN;
+ d->Volt[out21] = VoltChange(d->PinId[out21], out21, ComponentAdderss, V_OPEN);
+ }
+ else if (index == out21)
+ {
+ d->Volt[out11] = VoltChange(d->PinId[out11], out11, ComponentAdderss, V_OPEN);
+ d->Volt[out21] = V_OPEN;
+ }
+ else
+ {
+ d->Volt[out11] = VoltChange(d->PinId[out11], out11, ComponentAdderss, V_OPEN);
+ d->Volt[out21] = VoltChange(d->PinId[out21], out21, ComponentAdderss, V_OPEN);
+ }
+
+ double Vin;
+ double Vout;
+
+ ///Get voltages at the connected pins
+ if (index == in1)
+ {
+ Vin = volt;
+ Vout = VoltRequest(d->PinId[out12], ComponentAdderss);
+ }
+ else if (index == out12)
+ {
+ Vin = VoltRequest(d->PinId[in1], ComponentAdderss);
+ Vout = volt;
+ }
+ else
+ {
+ Vin = VoltRequest(d->PinId[in1], ComponentAdderss);
+ Vout = VoltRequest(d->PinId[out12], ComponentAdderss);
+ }
+
+ ///Set 1: input 1, output11, output12
+ ///If either pin is grounded then all pins are set to GND
+ if (Vin == GND || Vout == GND)
+ {
+ d->Volt[out12] = VoltChange(d->PinId[out12], out12, ComponentAdderss, GND);
+ d->Volt[in1] = VoltChange(d->PinId[in1], in1, ComponentAdderss, GND);
+ }
+ ///If Vin is set as open
+ else if (Vin == V_OPEN)
+ d->Volt[in1] = VoltChange(d->PinId[in1], in1, ComponentAdderss, Vout);
+ ///If Vout is set as open
+ else if (Vout == V_OPEN)
+ d->Volt[out12] = VoltChange(d->PinId[out12], out12, ComponentAdderss, Vin);
+ ///If no pin is grounded then all pins are set to the max voltage of the pins
+ else
+ {
+ d->Volt[out12] = VoltChange(d->PinId[out12], out12, ComponentAdderss, max(Vin, Vout));
+ d->Volt[in1] = VoltChange(d->PinId[in1], in1, ComponentAdderss, max(Vin, Vout));
+ }
+
+ ///Get voltages at the connected pins
+ if (index == in2)
+ {
+ Vin = volt;
+ Vout = VoltRequest(d->PinId[out22], ComponentAdderss);
+ }
+ else if (index == out22)
+ {
+ Vin = VoltRequest(d->PinId[in2], ComponentAdderss);
+ Vout = volt;
+ }
+ else
+ {
+ Vin = VoltRequest(d->PinId[in2], ComponentAdderss);
+ Vout = VoltRequest(d->PinId[out22], ComponentAdderss);
+ }
+
+ ///Set 2: input 2, output21, output22
+ ///If either pin is grounded then all pins are set to GND
+ if (Vin == GND || Vout == GND)
+ {
+ d->Volt[out22] = VoltChange(d->PinId[out22], out22, ComponentAdderss, GND);
+ d->Volt[in2] = VoltChange(d->PinId[in2], in2, ComponentAdderss, GND);
+ }
+ ///If Vin is set as open
+ else if (Vin == V_OPEN)
+ d->Volt[in2] = VoltChange(d->PinId[in2], in2, ComponentAdderss, Vout);
+ ///If Vout is set as open
+ else if (Vout == V_OPEN)
+ d->Volt[out22] = VoltChange(d->PinId[out22], out22, ComponentAdderss, Vin);
+ ///If no pin is grounded then all pins are set to the max voltage of the pins
+ else
+ {
+ d->Volt[out22] = VoltChange(d->PinId[out22], out22, ComponentAdderss, max(Vin, Vout));
+ d->Volt[in2] = VoltChange(d->PinId[in2], in2, ComponentAdderss, max(Vin, Vout));
+ }
+ }
+
+ return d->Volt[index];
+}
+
+//Perform a static check and equalise the voltage on all pins that are connected to DPST at runtime
+void EqualiseStaticVoltageDPDT(void* ComponentAdderss)
+{
+ DpdtStruct* d = (DpdtStruct*)ComponentAdderss;
+
+ ///Check if DPDT switch is in state 1; i.e Input 1 is connected to output11, Input 2 is connected to output21
+ if (d->NS1)
+ {
+ ///If DPDT switch is in state 1 then output12 and output22 will be floating/open
+ d->Volt[out12] = VoltChange(d->PinId[out12], out12, ComponentAdderss, V_OPEN);
+ d->Volt[out22] = VoltChange(d->PinId[out22], out22, ComponentAdderss, V_OPEN);
+
+ ///Get voltages at the connected pins
+ double Vin = VoltRequest(d->PinId[in1], ComponentAdderss);
+ double Vout = VoltRequest(d->PinId[out11], ComponentAdderss);
+
+ ///Set 1: input 1, output11, output12
+ ///If either pin is grounded then all pins are set to GND
+ if (Vin == GND || Vout == GND)
+ {
+ d->Volt[out11] = VoltChange(d->PinId[out11], out11, ComponentAdderss, GND);
+ d->Volt[in1] = VoltChange(d->PinId[in1], in1, ComponentAdderss, GND);
+ }
+ ///If Vin is set as open
+ else if (Vin == V_OPEN)
+ d->Volt[in1] = VoltChange(d->PinId[in1], in1, ComponentAdderss, Vout);
+ ///If Vout is set as open
+ else if (Vout == V_OPEN)
+ d->Volt[out11] = VoltChange(d->PinId[out11], out11, ComponentAdderss, Vin);
+ ///If no pin is grounded then all pins are set to the max voltage of the pins
+ else
+ {
+ d->Volt[out11] = VoltChange(d->PinId[out11], out11, ComponentAdderss, max(Vin, Vout));
+ d->Volt[in1] = VoltChange(d->PinId[in1], in1, ComponentAdderss, max(Vin, Vout));
+ }
+
+ Vin = VoltRequest(d->PinId[in2], ComponentAdderss);
+ Vout = VoltRequest(d->PinId[out21], ComponentAdderss);
+ ///Set 2: input 2, output21, output22
+ ///If either pin is grounded then all pins are set to GND
+ if (Vin == GND || Vout == GND)
+ {
+ d->Volt[out21] = VoltChange(d->PinId[out21], out21, ComponentAdderss, GND);
+ d->Volt[in2] = VoltChange(d->PinId[in2], in2, ComponentAdderss, GND);
+ }
+ ///If Vin is set as open
+ else if (Vin == V_OPEN)
+ d->Volt[in2] = VoltChange(d->PinId[in2], in2, ComponentAdderss, Vout);
+ ///If Vout is set as open
+ else if (Vout == V_OPEN)
+ d->Volt[out21] = VoltChange(d->PinId[out21], out21, ComponentAdderss, Vin);
+ ///If no pin is grounded then all pins are set to the max voltage of the pins
+ else
+ {
+ d->Volt[out21] = VoltChange(d->PinId[out21], out21, ComponentAdderss, max(Vin, Vout));
+ d->Volt[in2] = VoltChange(d->PinId[in2], in2, ComponentAdderss, max(Vin, Vout));
+ }
+ }
+ ///Check if DPDT switch is in state 2; i.e Input 1 is connected to output12, Input 2 is connected to output22
+ else
+ {
+ ///If DPDT switch is in state 2 then output11 and output21 will be floating/open
+ d->Volt[out11] = VoltChange(d->PinId[out11], out11, ComponentAdderss, V_OPEN);
+ d->Volt[out21] = VoltChange(d->PinId[out21], out21, ComponentAdderss, V_OPEN);
+
+ ///Get voltages at the connected pins
+ double Vin = VoltRequest(d->PinId[in1], ComponentAdderss);
+ double Vout = VoltRequest(d->PinId[out12], ComponentAdderss);
+
+ ///Set 1: input 1, output11, output12
+ ///If either pin is grounded then all pins are set to GND
+ if (Vin == GND || Vout == GND)
+ {
+ d->Volt[out12] = VoltChange(d->PinId[out12], out12, ComponentAdderss, GND);
+ d->Volt[in1] = VoltChange(d->PinId[in1], in1, ComponentAdderss, GND);
+ }
+ ///If Vin is set as open
+ else if (Vin == V_OPEN)
+ d->Volt[in1] = VoltChange(d->PinId[in1], in1, ComponentAdderss, Vout);
+ ///If Vout is set as open
+ else if (Vout == V_OPEN)
+ d->Volt[out12] = VoltChange(d->PinId[out12], out12, ComponentAdderss, Vin);
+ ///If no pin is grounded then all pins are set to the max voltage of the pins
+ else
+ {
+ d->Volt[out12] = VoltChange(d->PinId[out12], out12, ComponentAdderss, max(Vin, Vout));
+ d->Volt[in1] = VoltChange(d->PinId[in1], in1, ComponentAdderss, max(Vin, Vout));
+ }
+
+ Vin = VoltRequest(d->PinId[in2], ComponentAdderss);
+ Vout = VoltRequest(d->PinId[out22], ComponentAdderss);
+ ///Set 2: input 2, output21, output22
+ ///If either pin is grounded then all pins are set to GND
+ if (Vin == GND || Vout == GND)
+ {
+ d->Volt[out22] = VoltChange(d->PinId[out22], out22, ComponentAdderss, GND);
+ d->Volt[in2] = VoltChange(d->PinId[in2], in2, ComponentAdderss, GND);
+ }
+ ///If Vin is set as open
+ else if (Vin == V_OPEN)
+ d->Volt[in2] = VoltChange(d->PinId[in2], in2, ComponentAdderss, Vout);
+ ///If Vout is set as open
+ else if (Vout == V_OPEN)
+ d->Volt[out22] = VoltChange(d->PinId[out22], out22, ComponentAdderss, Vin);
+ ///If no pin is grounded then all pins are set to the max voltage of the pins
+ else
+ {
+ d->Volt[out22] = VoltChange(d->PinId[out22], out22, ComponentAdderss, max(Vin, Vout));
+ d->Volt[in2] = VoltChange(d->PinId[in2], in2, ComponentAdderss, max(Vin, Vout));
+ }
+ }
+}
+
+void ToggleState(DpdtStruct* d, void* ImageLocation)
+{
+ d->image = (d->image == DPDT_1) ? DPDT_2 : DPDT_1;
+ d->NS1 = (d->NS1 == TRUE) ? FALSE : TRUE;
+ SetImage(d->image, ImageLocation);
+ RefreshImages();
+}
+
+void HandleDpdtEvent(void * ComponentAddress, int Event, BOOL SimulationStarted, void * ImageLocation, UINT ImageId, HWND * h)
+{
+
+ DpdtStruct* d = (DpdtStruct*)ComponentAddress;
+
+ if (SimulationStarted)
+ {
+ switch (Event)
+ {
+ case EVENT_MOUSE_DOWN:
+ ToggleState(d, ImageLocation);
+ EqualiseStaticVoltageDPDT(ComponentAddress);
+ break;
+ case EVENT_MOUSE_UP:
+ if (!d->latched)
+ {
+ ToggleState(d, ImageLocation);
+ EqualiseStaticVoltageDPDT(ComponentAddress);
+ }
+ break;
+ default:
+ break;
+ }
+ }
+ else
+ {
+ switch (Event)
+ {
+ case EVENT_MOUSE_DBLCLICK:
+ DpdtSettingsDialog(ComponentAddress, ImageLocation);
+ break;
+ default:
+ break;
+ }
+ }
+}
+
+double DpdtVoltChanged(void * ComponentAddress, BOOL SimulationStarted, int index, double Volt, int Source, void * ImageLocation)
+{
+
+ if (SimulationStarted)
+ return EqualiseRuntimeVoltageDPDT(ComponentAddress, index, Volt);
+
+ return Volt;
+} \ No newline at end of file