PICSimLab - Programmable IC Simulator Laboratory 0.9.2
PICSimLab - API
Loading...
Searching...
No Matches
other_logic_block.h
1/* ########################################################################
2
3 PICSimLab - Programmable IC Simulator Laboratory
4
5 ########################################################################
6
7 Copyright (c) : 2010-2024 Luis Claudio GambĂ´a Lopes <lcgamboa@yahoo.com>
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22
23 For e-mail suggestions : lcgamboa@yahoo.com
24 ######################################################################## */
25
26#ifndef PART_LOGIC_BLOCK_H
27#define PART_LOGIC_BLOCK_H
28
29#include "../lib/part.h"
30
31#define PART_LOGIC_BLOCK_Name "Logic Block"
32
33enum { LG_NOT, LG_BUFFER, LG_AND, LG_NAND, LG_OR, LG_NOR, LG_XOR, LG_XNOR };
34const char* logicgate_name[] = {"NOT", "BUFFER", "AND", "NAND", "OR", "NOR", "XOR", "XNOR"};
35
36class cpart_lblock : public part {
37public:
38 std::string GetAboutInfo(void) override { return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
39 cpart_lblock(const unsigned x, const unsigned y, const char* name, const char* type, board* pboard_, const int id_);
40 ~cpart_lblock(void);
41 void DrawOutput(const unsigned int index) override;
42 void PreProcess(void) override;
43 void Process(void) override;
44 void PostProcess(void) override;
45 void Reset(void) override;
46 void ConfigurePropertiesWindow(void) override;
47 void ReadPropertiesWindow(void) override;
48 void LoadPartImage(void) override;
49 std::string WritePreferences(void) override;
50 void ReadPreferences(std::string value) override;
51 unsigned short GetInputId(char* name) override;
52 unsigned short GetOutputId(char* name) override;
53 void SpinChange(const char* controlname, int value) override;
54 void ComboChange(const char* controlname, std::string value) override;
55
56private:
57 void ChangeSize(const unsigned int sz);
58 unsigned char gatetype;
59 unsigned char input_pins[8];
60 unsigned char output_pins[2];
61 unsigned long output_pins_alm;
62 unsigned char output_value;
63 unsigned char output_value_prev;
64 int OWidth;
65 int OHeight;
66 int xoff;
67 unsigned int Size;
68 long mcount;
69 int JUMPSTEPS_;
70};
71
72#endif /* PART_LOGIC_BLOCK_H */
Board class.
Definition board.h:111
Definition other_logic_block.h:36
void ConfigurePropertiesWindow(void) override
Called to configure the properties window.
Definition other_logic_block.cc:493
void ReadPreferences(std::string value) override
Called whe configuration file load preferences.
Definition other_logic_block.cc:480
void ReadPropertiesWindow(void) override
Called when properties window close.
Definition other_logic_block.cc:557
void SpinChange(const char *controlname, int value) override
Used by properties window spin.
Definition other_logic_block.cc:583
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition other_logic_block.cc:422
void PreProcess(void) override
Called every start of CPU process.
Definition other_logic_block.cc:292
void LoadPartImage(void) override
Load Part Image.
Definition other_logic_block.cc:633
void PostProcess(void) override
Called every end of CPU process.
Definition other_logic_block.cc:398
void Reset(void) override
Reset part status.
Definition other_logic_block.cc:106
std::string GetAboutInfo(void) override
Return the about information of part.
Definition other_logic_block.h:38
void DrawOutput(const unsigned int index) override
Called to draw every output.
Definition other_logic_block.cc:122
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition other_logic_block.cc:417
std::string WritePreferences(void) override
Called to save part preferences in configuration file.
Definition other_logic_block.cc:470
void Process(void) override
Called every CPU step.
Definition other_logic_block.cc:298
void ComboChange(const char *controlname, std::string value) override
Used by properties window combos.
Definition other_logic_block.cc:591
PART class.
Definition part.h:49