26#ifndef PART_JUMPERS_IPC_H
27#define PART_JUMPERS_IPC_H
29#include "../devices/ipc_smem.h"
30#include "../lib/part.h"
32#define PART_JUMPERS_IPC_Name "Jumper IPC"
42 std::string
GetAboutInfo(
void)
override {
return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
46 void DrawOutput(
const unsigned int index)
override;
54 unsigned short GetInputId(
char* name)
override;
56 void ComboChange(
const char* controlname, std::string value)
override;
59 void ChangeType(
unsigned char type);
63 unsigned char pins[8];
Board class.
Definition board.h:111
Definition other_jumpers_ipc.h:40
std::string WritePreferences(void) override
Called to save part preferences in configuration file.
Definition other_jumpers_ipc.cc:200
void PostProcess(void) override
Called every end of CPU process.
Definition other_jumpers_ipc.cc:325
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition other_jumpers_ipc.cc:161
std::string GetAboutInfo(void) override
Return the about information of part.
Definition other_jumpers_ipc.h:42
void DrawOutput(const unsigned int index) override
Called to draw every output.
Definition other_jumpers_ipc.cc:115
void ReadPreferences(std::string value) override
Called whe configuration file load preferences.
Definition other_jumpers_ipc.cc:209
void PreProcess(void) override
Called every start of CPU process.
Definition other_jumpers_ipc.cc:274
void Process(void) override
Called every CPU step.
Definition other_jumpers_ipc.cc:279
void ComboChange(const char *controlname, std::string value) override
Used by properties window combos.
Definition other_jumpers_ipc.cc:366
void RegisterRemoteControl(void) override
Register remote control variables.
Definition other_jumpers_ipc.cc:220
void ReadPropertiesWindow(void) override
Called when properties window close.
Definition other_jumpers_ipc.cc:253
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition other_jumpers_ipc.cc:156
void ConfigurePropertiesWindow(void) override
Called to configure the properties window.
Definition other_jumpers_ipc.cc:230
PART class.
Definition part.h:49
Definition other_jumpers_ipc.h:34