Go to file
r4 cfdce0efc7 trigger gh hook 2021-07-26 14:18:05 +02:00
Parts Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
Resources Initial Commit 2020-03-24 20:18:39 +01:00
UndoCommands Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
CircuitBuffer.cpp Add saveable labels for parts and connectors 2020-04-03 19:38:01 +02:00
CircuitBuffer.h Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
CircuitSimulator.pro Add saveable labels for parts and connectors 2020-04-03 19:38:01 +02:00
Connector.cpp Add saveable labels for parts and connectors 2020-04-03 19:38:01 +02:00
Connector.h Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
FileHandler.cpp Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
FileHandler.h Initial Commit 2020-03-24 20:18:39 +01:00
LICENSE Initial Commit 2020-03-24 20:18:39 +01:00
Label.cpp Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
Label.h Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
Logic.cpp Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
Logic.h Initial Commit 2020-03-24 20:18:39 +01:00
MainWindow.cpp Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
MainWindow.h Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
MainWindow.ui Add saveable labels for parts and connectors 2020-04-03 19:38:01 +02:00
Part.cpp Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
Part.h Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
README.md Improve readability 2020-03-24 20:40:36 +01:00
Resources.qrc Initial Commit 2020-03-24 20:18:39 +01:00
Scene.cpp Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
Scene.h Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
Wire.cpp Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00
Wire.h Fix bug where undoing+redoing AddWire multiple times crashes 2020-03-28 11:15:04 +01:00
eAlignMode.h Add saveable labels for parts and connectors 2020-04-03 19:38:01 +02:00
eConnectorType.h Initial Commit 2020-03-24 20:18:39 +01:00
ePartType.h Initial Commit 2020-03-24 20:18:39 +01:00
main.cpp Make buttons toggleable by single clicking 2020-04-04 14:07:16 +02:00

README.md

Circuit Logic Simulator

Build Instructions

  1. Install dependencies

    • Qt base: qt5-base
    • QMake: qt5-tools
    • Compiler: g++ or clang, must support C++ 11 or later
    • Note that your distro's package names might vary. All provided package names are those used by Archlinux.
  2. Clone the repository and cd into it

    $git clone https://github.com/xypwn/circuit-logic-simulator.git

    $cd circuit-logic-simulator

  3. Create a build directory and cd into it

    $mkdir build

    $cd build

  4. Configure build using QMake

    $qmake ..

  5. Start build (replace 4 with the number of threads you have to speed it up)

    $make -j 4

  6. Run the executable

    There should now be an executable file called CircuitSimulator in your build folder. You can put it anywhere or run it with:

    $./CircuitSimulator

Notes

  • The software is currently under heavy development and therefore still crawling with bugs
  • The About and Tutorial menu item haven't yet been implemented
  • Although some icons are missing, you can hover over an item to see what it does