-
-
Notifications
You must be signed in to change notification settings - Fork 24
Project Files
Mikayla edited this page Jun 21, 2023
·
14 revisions
cc-mek-scada/
├── coordinator/
│ ├── session/
│ │ ├── apisessions.lua - session manager for API
│ │ └── pocket.lua - pocket API session
│ ├── ui/
│ │ ├── components/
│ │ │ ├── boiler.lua - boiler display for overview
│ │ │ ├── imatrix.lua - induction matrix display on main screen
│ │ │ ├── processctl.lua - process control interface on main screen
│ │ │ ├── reactor.lua - reactor display for overview
│ │ │ ├── turbine.lua - turbine display for overview
│ │ │ ├── unit_detail.lua - unit detail display on unit monitors
│ │ │ └── unit_overview.lua - unit overview on primary monitor
│ │ ├── layout/
│ │ │ ├── main_view.lua - main screen on primary monitor
│ │ │ └── unit_view.lua - unit screens on unit monitors
│ │ ├── dialog.lua - functions for terminal dialogs
│ │ └── style.lua - 'stylesheet' for coordinator UI formatting
│ ├── config.lua - coordinator configuration file
│ ├── coordinator.lua - coordinator comms and monitor configuration
│ ├── iocontrol.lua - I/O data and PSIL for unit & facility statuses and build
│ ├── process.lua - process control functions and settings access
│ ├── renderer.lua - GUI renderer control
│ ├── sounder.lua - speaker sounder tone generation and control
│ └── startup.lua - main coordinator application
├── graphics/
│ ├── elements/
│ │ ├── animations/
│ │ │ └── waiting.lua - loading spinning animation
│ │ ├── controls/
│ │ │ ├── hazard_button.lua - button with hazard pattern around it
│ │ │ ├── multi_button.lua - multi-choice button
│ │ │ ├── push_button.lua - push button, single press then releases
│ │ │ ├── radio_button.lua - multi-choice vertical radio button
│ │ │ ├── sidebar.lua - sidebar vertical tab selector
│ │ │ ├── spinbox_numeric.lua - fixed-point number spinbox input
│ │ │ ├── switch_button.lua - switch button, single press toggles state
│ │ │ └── tabbar.lua - horizontal tab selector
│ │ ├── indicators/
│ │ │ ├── alight.lua - alarm light indicator (quad-state)
│ │ │ ├── coremap.lua - reactor core map
│ │ │ ├── data.lua - numerical data indicator w/ labels & units
│ │ │ ├── hbar.lua - horizontal percentage bar
│ │ │ ├── icon.lua - single character indicator w/ color
│ │ │ ├── led.lua - tiny rectangle 'LED' indicator (on/off)
│ │ │ ├── ledpair.lua - tiny rectangle 'LED' indicator (tri-state)
│ │ │ ├── ledrgb.lua - tiny rectangle 'LED' indicator (n-state)
│ │ │ ├── light.lua - square light indicator (on/off)
│ │ │ ├── power.lua - numerical indicator for power (auto-scaled units)
│ │ │ ├── rad.lua - numerical indicator for radiation (auto-scaled units)
│ │ │ ├── state.lua - text + color state indicator
│ │ │ ├── trilight.lua - square light indicator (tri-state)
│ │ │ └── vbar.lua - vertical percentage bar
│ │ ├── colormap.lua - color map (for testing, shows all colors in a row)
│ │ ├── displaybox.lua - container element used as the root of the element tree, uses a window object as parent
│ │ ├── div.lua - container element, uses a normal element as its parent
│ │ ├── listbox.lua - scrolling listbox
│ │ ├── multipane.lua - multi-pane, to be used with a tab control to show multiple views in the same place
│ │ ├── pipenet.lua - pipe network, used on main screen (as an example)
│ │ ├── rectangle.lua - container element with an optional boarder, uses a normal element as its parent
│ │ ├── textbox.lua - text box, supports text alignment and wrapping
│ │ └── tiling.lua - alternating tiling pattern element
│ ├── core.lua - core graphics utilities
│ ├── element.lua - base "class" of all graphics elements
│ ├── events.lua - mouse/keyboard event handling
│ └── flasher.lua - handler for flashing indicators
├── lockbox/ - select lua-lockbox files
├── pocket/
│ ├── ui/
│ │ ├── components/
│ │ │ └── conn_waiting.lua
│ │ ├── pages/
│ │ │ ├── boiler_page.lua
│ │ │ ├── home_page.lua
│ │ │ ├── reactor_page.lua
│ │ │ ├── turbine_page.lua
│ │ │ └── unit_page.lua
│ │ ├── main.lua
│ │ └── style.lua
│ ├── config.lua
│ ├── coreio.lua
│ ├── pocket.lua
│ ├── renderer.lua
│ └── startup.lua
├── reactor-plc/
│ ├── panel/
│ │ ├── front_panel.lua
│ │ └── style.lua
│ ├── config.lua
│ ├── databus.lua
│ ├── plc.lua
│ ├── renderer.lua
│ ├── startup.lua
│ └── threads.lua
├── rtu/
│ ├── dev/
│ │ ├── boilerv_rtu.lua
│ │ ├── envd_rtu.lua
│ │ ├── imatrix_rtu.lua
│ │ ├── redstone_rtu.lua
│ │ ├── sna_rtu.lua
│ │ ├── sps_rtu.lua
│ │ └── turbinev_rtu.lua
│ ├── panel/
│ │ ├── front_panel.lua
│ │ └── style.lua
│ ├── config.lua
│ ├── databus.lua
│ ├── modbus.lua
│ ├── renderer.lua
│ ├── rtu.lua
│ ├── startup.lua
│ └── threads.lua
├── scada-common/
│ ├── comms.lua
│ ├── constants.lua
│ ├── crash.lua
│ ├── crypto.lua
│ ├── log.lua
│ ├── mqueue.lua
│ ├── ppm.lua
│ ├── psil.lua
│ ├── rsio.lua
│ ├── tcd.lua
│ ├── types.lua
│ └── util.lua
├── supervisor/
│ ├── panel/
│ │ ├── components/
│ │ │ ├── pdg_entry.lua
│ │ │ └── rtu_entry.lua
│ │ ├── front_panel.lua
│ │ ├── pgi.lua
│ │ └── style.lua
│ ├── session/
│ │ ├── rtu/
│ │ │ ├── boilerv.lua
│ │ │ ├── envd.lua
│ │ │ ├── imatrix.lua
│ │ │ ├── qtypes.lua
│ │ │ ├── redstone.lua
│ │ │ ├── sna.lua
│ │ │ ├── sps.lua
│ │ │ ├── turbinev.lua
│ │ │ ├── txnctrl.lua
│ │ │ └── unit_session.lua
│ │ ├── coordinator.lua
│ │ ├── plc.lua
│ │ ├── pocket.lua
│ │ ├── rsctl.lua
│ │ ├── rtu.lua
│ │ ├── svqtypes.lua
│ │ └── svsessions.lua
│ ├── config.lua
│ ├── databus.lua
│ ├── facility.lua
│ ├── renderer.lua
│ ├── startup.lua
│ ├── supervisor.lua
│ ├── unit.lua
│ └── unitlogic.lua
├── ccmsi.lua
├── initenv.lua
└── startup.lua
If you need help beyond this wiki, open a support discussion or ask on Discord! If you prefer videos, they can be found on my YouTube channel.
- User Manual
- Computer Applications
- Notable System Components
- Notes
- Investigations
- References & Resources
- Legacy