26#ifndef PART_7S_DISPLAY_DEC_H
27#define PART_7S_DISPLAY_DEC_H
29#include "../lib/part.h"
31#define PART_7S_DISPLAY_DEC_Name "7 Segments Display (Decoder)"
35 std::string
GetAboutInfo(
void)
override {
return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
39 void DrawOutput(
const unsigned int index)
override;
49 unsigned short GetInputId(
char* name)
override;
54 void ChangeType(
unsigned char tp);
55 unsigned char input_pins[8];
68 unsigned char latchs[4];
Board class.
Definition board.h:111
Definition output_7s_Display_Dec.h:33
void Process(void) override
Called every CPU step.
Definition output_7s_Display_Dec.cc:629
void DrawOutput(const unsigned int index) override
Called to draw every output.
Definition output_7s_Display_Dec.cc:136
std::string GetAboutInfo(void) override
Return the about information of part.
Definition output_7s_Display_Dec.h:35
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition output_7s_Display_Dec.cc:424
std::string WritePreferences(void) override
Called to save part preferences in configuration file.
Definition output_7s_Display_Dec.cc:529
std::string GetPictureFileName(void) override
Return the filename of part picture.
Definition output_7s_Display_Dec.cc:783
void RegisterRemoteControl(void) override
Register remote control variables.
Definition output_7s_Display_Dec.cc:547
std::string GetMapFile(void) override
Return the filename of part picture map.
Definition output_7s_Display_Dec.cc:796
void ReadPropertiesWindow(void) override
Called when properties window close.
Definition output_7s_Display_Dec.cc:601
void PreProcess(void) override
Called every start of CPU process.
Definition output_7s_Display_Dec.cc:619
void ConfigurePropertiesWindow(void) override
Called to configure the properties window.
Definition output_7s_Display_Dec.cc:582
void ReadPreferences(std::string value) override
Called whe configuration file load preferences.
Definition output_7s_Display_Dec.cc:538
void PostProcess(void) override
Called every end of CPU process.
Definition output_7s_Display_Dec.cc:744
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition output_7s_Display_Dec.cc:419
PART class.
Definition part.h:49