2021-02-19 16:47:37 -05:00
<!doctype html>
< html class = "no-js" lang = "" >
< head >
< meta charset = "utf-8" >
< title > < / title >
< meta name = "description" content = "" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< meta property = "og:title" content = "" >
< meta property = "og:type" content = "" >
< meta property = "og:url" content = "" >
< meta property = "og:image" content = "" >
< link rel = "apple-touch-icon" href = "icon.png" >
<!-- Place favicon.ico in the root directory -->
< link rel = "stylesheet" href = "css/normalize.css" >
< link rel = "stylesheet" href = "css/main.css" >
< meta name = "theme-color" content = "#fafafa" >
< / head >
< body >
2021-02-22 02:29:12 -05:00
< div id = "WelcomeWindow" >
< h2 > MatCat BrowserLogic Engine< / h2 >
< p > Welcome to logic.parts, a free to use logic simulator for anyone to use. This is opensource software, you can find the project at < a href = "https://www.mygit.space/MatCat.OpenSource/BrowserLogic" > https://www.mygit.space/MatCat.OpenSource/BrowserLogic< / a > . This is an early development project, so expect bugs and some things to not work :) If you would like to contribute please feel free to find me on IRC on Freenode in channel #LogicParts.< / p >
< input type = "button" id = "btn_CloseWelcome" value = "Simulate Some Logic!" > < br / >
< input type = "checkbox" id = "chk_dontDisplayWelcome" name = "chk_dontDisplayWelcome" value = "1" >
< label for = "chk_dontDisplayWelcome" > Don't show welcome window again< / label > < / div >
2021-02-19 16:47:37 -05:00
< script src = "js/vendor/modernizr-3.11.2.min.js" > < / script >
2021-02-21 04:51:21 -05:00
< div id = "top-bar" >
MatCat BrowserLogic < span id = "version" > < / span >
< / div >
< div id = "left-menu" >
< div style = "margin: 5px;" >
< input type = "button" id = "btn_AddAND" value = "& AND" / > < br / >
< input type = "button" id = "btn_AddNAND" value = "!& NAND" / > < br / >
< input type = "button" id = "btn_AddOR" value = "| OR" / > < br / >
< input type = "button" id = "btn_AddNOR" value = "!| NOR" / > < br / >
< input type = "button" id = "btn_AddXOR" value = "^ XOR" / > < br / >
< input type = "button" id = "btn_AddXNOR" value = "!^ XNOR" / > < br / >
2021-02-21 05:21:27 -05:00
< input type = "button" id = "btn_AddNOT" value = "! NOT" / > < br / >
2021-02-21 04:51:21 -05:00
< input type = "button" id = "btn_AddSWITCH" value = "|- SWITCH" / > < br / >
2021-02-22 23:22:37 -05:00
< input type = "button" id = "btn_AddBTN" value = "[o] BUTTON" / > < br / >
2021-02-21 04:51:21 -05:00
< input type = "button" id = "btn_AddCLK" value = "🕑 Clock" / > < br / >
< input type = "button" id = "btn_Delete" value = "🗑 Delete" / >
< / div >
< / div >
2021-02-22 01:05:17 -05:00
< canvas id = "GridPlane" width = "400" height = "300" style = "position: absolute; top: 50px; left 202px;" > < / canvas >
2021-02-21 04:51:21 -05:00
< canvas id = "LogicPlane" width = "400" height = "300" style = "margin: 0px; padding: 0px; position: absolute; top: 50px; left: 202px;" > < / canvas >
< div id = "PropertiesBox" >
< div id = "PropertiesBoxTitle" >
Properties
< / div >
< div id = "PropertiesBoxContent" >
Content
< / div >
2021-02-19 16:47:37 -05:00
< / div >
2021-02-22 02:29:12 -05:00
< div id = "darkout-overlay" > < / div >
2021-02-19 16:47:37 -05:00
< script src = "js/logicengine.js" > < / script >
< script src = "js/main.js" > < / script >
< / body >
< / html >