You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
r4 cfdce0efc7 trigger gh hook 2 years ago
Parts Make buttons toggleable by single clicking 3 years ago
Resources Initial Commit 3 years ago
UndoCommands Make buttons toggleable by single clicking 3 years ago
CircuitBuffer.cpp Add saveable labels for parts and connectors 3 years ago
CircuitBuffer.h Make buttons toggleable by single clicking 3 years ago
CircuitSimulator.pro Add saveable labels for parts and connectors 3 years ago
Connector.cpp Add saveable labels for parts and connectors 3 years ago
Connector.h Make buttons toggleable by single clicking 3 years ago
FileHandler.cpp Make buttons toggleable by single clicking 3 years ago
FileHandler.h Initial Commit 3 years ago
LICENSE Initial Commit 3 years ago
Label.cpp Make buttons toggleable by single clicking 3 years ago
Label.h Make buttons toggleable by single clicking 3 years ago
Logic.cpp Make buttons toggleable by single clicking 3 years ago
Logic.h Initial Commit 3 years ago
MainWindow.cpp Make buttons toggleable by single clicking 3 years ago
MainWindow.h Make buttons toggleable by single clicking 3 years ago
MainWindow.ui Add saveable labels for parts and connectors 3 years ago
Part.cpp Make buttons toggleable by single clicking 3 years ago
Part.h Make buttons toggleable by single clicking 3 years ago
README.md Improve readability 3 years ago
Resources.qrc Initial Commit 3 years ago
Scene.cpp Make buttons toggleable by single clicking 3 years ago
Scene.h Make buttons toggleable by single clicking 3 years ago
Wire.cpp Make buttons toggleable by single clicking 3 years ago
Wire.h Fix bug where undoing+redoing AddWire multiple times crashes 3 years ago
eAlignMode.h Add saveable labels for parts and connectors 3 years ago
eConnectorType.h Initial Commit 3 years ago
ePartType.h Initial Commit 3 years ago
main.cpp Make buttons toggleable by single clicking 3 years ago

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