Compare commits
10 commits
bb222fd84d
...
849d8d8ca2
Author | SHA1 | Date | |
---|---|---|---|
|
849d8d8ca2 | ||
|
3dce256213 | ||
|
e3e03dc31f | ||
|
5183aa821a | ||
|
94fcc42aed | ||
|
3ed195d7dd | ||
|
c25a56ee19 | ||
|
521486be62 | ||
|
4b308f6c32 | ||
|
6c618749f1 |
706 changed files with 9260 additions and 5201 deletions
8
LICENSE
8
LICENSE
|
@ -1,10 +1,8 @@
|
|||
Notes Toolkit (NotesTK) is a set of tools for building applications focused on taking and organising notes.
|
||||
Copyright (C) 2023 James Grogan (grogan.ox@gmail.com)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
See https://opensource.org/licenses/MIT
|
||||
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
|
63
README.md
63
README.md
|
@ -1,61 +1,14 @@
|
|||
# NotesTK
|
||||
# Stuff From Scratch
|
||||
|
||||
Notes Toolkit (NotesTK) is a set of tools for building applications focused on taking and organising notes, like study or research materials.
|
||||
This is a hobby-repo I use for learning about different software technologies by trying to build stuff from scratch.
|
||||
|
||||
## Project Goals
|
||||
It covers a bunch of areas:
|
||||
|
||||
* Cross-platform
|
||||
* Low third-party dependencies
|
||||
* Permissive licensing
|
||||
* Simplicity over performance
|
||||
* Build tooling
|
||||
* Audio and Video
|
||||
* 3D modelling
|
||||
* Desktop window management and UIs
|
||||
|
||||
## Project Status
|
||||
Nothing here should be used in a real project :)
|
||||
|
||||
🚨🚨🚨 The codebase is at a very early/prototype stage and under heavy active development🚨🚨🚨
|
||||
|
||||
In addition to feature development I've been using it to get up-to-speed on various media formats and desktop and rendering APIs. It is strongly recommended to only use it as a reading reference.
|
||||
|
||||
Expect:
|
||||
|
||||
* No Docs or tagged releases
|
||||
* Large commits and significant breaking changes
|
||||
* Unreliable/untested APIs
|
||||
* Naive/low-performance implementations
|
||||
|
||||
The only currently recommended use case is if you are implementing some element of the library functionality and want to see how someone else has tackled it, maybe you will see something useful.
|
||||
|
||||
# Building
|
||||
|
||||
Many project features (e.g. Wayland integration) only build if suitable third-party dependencies are found on the system, otherwise they will be automatically disabled. You can find dependency requirements in the `README.md` file in each module's `src`directory.
|
||||
|
||||
A minimal set of dependencies for each platform are included below.
|
||||
|
||||
## Linux
|
||||
|
||||
Install dependencies:
|
||||
|
||||
```bash
|
||||
sudo apt-get install build-essential pkg-config cmake
|
||||
```
|
||||
|
||||
Build:
|
||||
|
||||
```bash
|
||||
mkdir build
|
||||
cd build
|
||||
cmake $PATH_TO_SOURCE
|
||||
make
|
||||
apps/$NAME_OF_APP
|
||||
```
|
||||
|
||||
## Windows
|
||||
|
||||
Tested with Visual Studio 17 with 'Desktop Development with C++' tooling, including ATL and Windows SDK 10 (10.0.19041.0). Additionally, install `cmake`.
|
||||
|
||||
```bash
|
||||
mkdir build
|
||||
cd build
|
||||
cmake $PATH_TO_SOURCE
|
||||
```
|
||||
|
||||
You can open the resulting `NotesTK.sln`in Visual Studio and build.
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include "DesktopManager.h"
|
||||
#include "MainApplication.h"
|
||||
|
||||
NotesTk::NotesTk(std::unique_ptr<CommandLineArgs> args, std::unique_ptr<MainApplication> mainApp)
|
||||
NotesTk::NotesTk(Ptr<CommandLineArgs> args, Ptr<MainApplication> mainApp)
|
||||
: GuiApplication(std::move(args), std::move(mainApp))
|
||||
{
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
class NotesTk : public GuiApplication
|
||||
{
|
||||
public:
|
||||
NotesTk(std::unique_ptr<CommandLineArgs> args = nullptr, std::unique_ptr<MainApplication> mainApp = nullptr);
|
||||
NotesTk(Ptr<CommandLineArgs> args = nullptr, Ptr<MainApplication> mainApp = nullptr);
|
||||
|
||||
protected:
|
||||
void initializeViews() override;
|
||||
|
|
|
@ -12,7 +12,7 @@ AudioEditorView::AudioEditorView()
|
|||
addWidget(std::move(label));
|
||||
}
|
||||
|
||||
std::unique_ptr<AudioEditorView> AudioEditorView::Create()
|
||||
Ptr<AudioEditorView> AudioEditorView::Create()
|
||||
{
|
||||
return std::make_unique<AudioEditorView>();
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ public:
|
|||
|
||||
AudioEditorView();
|
||||
|
||||
static std::unique_ptr<AudioEditorView> Create();
|
||||
static Ptr<AudioEditorView> Create();
|
||||
};
|
||||
|
||||
using AudioEditorViewUPtr = std::unique_ptr<AudioEditorView>;
|
||||
using AudioEditorViewUPtr = Ptr<AudioEditorView>;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "CanvasController.h"
|
||||
|
||||
std::unique_ptr<CanvasController> CanvasController::Create()
|
||||
Ptr<CanvasController> CanvasController::Create()
|
||||
{
|
||||
return std::make_unique<CanvasController>();
|
||||
}
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include "Pointer.h"
|
||||
|
||||
class CanvasController
|
||||
{
|
||||
public:
|
||||
static std::unique_ptr<CanvasController> Create();
|
||||
static Ptr<CanvasController> Create();
|
||||
};
|
||||
|
|
|
@ -24,6 +24,6 @@ private:
|
|||
|
||||
CanvasDrawCommand mActiveDrawingCommand{CanvasDrawCommand::LINE};
|
||||
|
||||
std::vector<std::unique_ptr<GeometryNode> > mSceneNodes;
|
||||
Vector<Ptr<GeometryNode> > mSceneNodes;
|
||||
bool mContentDirty{false};
|
||||
};
|
||||
|
|
|
@ -27,7 +27,7 @@ CanvasView::~CanvasView()
|
|||
|
||||
}
|
||||
|
||||
std::unique_ptr<CanvasView> CanvasView::Create()
|
||||
Ptr<CanvasView> CanvasView::Create()
|
||||
{
|
||||
return std::make_unique<CanvasView>();
|
||||
}
|
||||
|
@ -70,7 +70,7 @@ void CanvasView::onDrawCommandChanged(CanvasDrawCommand command)
|
|||
mDrawingArea->setActiveDrawingCommand(command);
|
||||
}
|
||||
|
||||
std::unique_ptr<Widget> CanvasView::initializeCacheButtons()
|
||||
Ptr<Widget> CanvasView::initializeCacheButtons()
|
||||
{
|
||||
auto saveButton = Button::Create();
|
||||
saveButton->setLabel("Save");
|
||||
|
|
|
@ -13,17 +13,17 @@ public:
|
|||
|
||||
~CanvasView();
|
||||
|
||||
static std::unique_ptr<CanvasView> Create();
|
||||
static Ptr<CanvasView> Create();
|
||||
|
||||
private:
|
||||
void onDrawCommandChanged(CanvasDrawCommand command);
|
||||
|
||||
void initialize();
|
||||
|
||||
std::unique_ptr<Widget> initializeCacheButtons();
|
||||
Ptr<Widget> initializeCacheButtons();
|
||||
|
||||
std::unique_ptr<CanvasController> mController;
|
||||
Ptr<CanvasController> mController;
|
||||
|
||||
CanvasDrawingArea* mDrawingArea{nullptr};
|
||||
};
|
||||
using CanvasViewPtr = std::unique_ptr<CanvasView>;
|
||||
using CanvasViewPtr = Ptr<CanvasView>;
|
||||
|
|
|
@ -28,7 +28,7 @@ ImageEditorView::~ImageEditorView()
|
|||
|
||||
}
|
||||
|
||||
std::unique_ptr<ImageEditorView> ImageEditorView::Create()
|
||||
Ptr<ImageEditorView> ImageEditorView::Create()
|
||||
{
|
||||
return std::make_unique<ImageEditorView>();
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@ public:
|
|||
|
||||
virtual ~ImageEditorView();
|
||||
|
||||
static std::unique_ptr<ImageEditorView> Create();
|
||||
static Ptr<ImageEditorView> Create();
|
||||
};
|
||||
|
||||
using ImageEditorViewUPtr = std::unique_ptr<ImageEditorView>;
|
||||
using ImageEditorViewUPtr = Ptr<ImageEditorView>;
|
||||
|
|
|
@ -16,5 +16,5 @@ private:
|
|||
unsigned mNumX{5};
|
||||
unsigned mNumY{5};
|
||||
|
||||
std::unique_ptr<GridNode> mGridNode;
|
||||
Ptr<GridNode> mGridNode;
|
||||
};
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
#include "windows.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include "Vector.h"
|
||||
#include "String.h"
|
||||
|
||||
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR pCmdLine, int nCmdShow)
|
||||
{
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include <memory>
|
||||
#include "Pointer.h"
|
||||
|
||||
#include "NotesTk.h"
|
||||
#include "MainApplication.h"
|
||||
|
@ -12,7 +12,7 @@ int main(int argc, char *argv[])
|
|||
|
||||
// Start the gui app
|
||||
auto app = NotesTk(std::move(args));
|
||||
//app.setUiInterfaceBackend(UiInterfaceFactory::Backend::X11_RASTER);
|
||||
app.setUiInterfaceBackend(UiInterfaceFactory::Backend::WAYLAND_RASTER);
|
||||
app.run();
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include <iostream>
|
||||
|
||||
std::unique_ptr<MeshViewerView> MeshViewerView::Create()
|
||||
Ptr<MeshViewerView> MeshViewerView::Create()
|
||||
{
|
||||
return std::make_unique<MeshViewerView>();
|
||||
}
|
||||
|
|
|
@ -10,10 +10,10 @@ class MeshViewerView : public Widget
|
|||
public:
|
||||
MeshViewerView();
|
||||
~MeshViewerView();
|
||||
static std::unique_ptr<MeshViewerView> Create();
|
||||
static Ptr<MeshViewerView> Create();
|
||||
void doPaint(const PaintEvent* event) override;
|
||||
private:
|
||||
|
||||
std::unique_ptr<AbstractMesh> mMesh;
|
||||
std::unique_ptr<MeshNode> mMeshNode;
|
||||
Ptr<AbstractMesh> mMesh;
|
||||
Ptr<MeshNode> mMeshNode;
|
||||
};
|
||||
|
|
|
@ -6,17 +6,17 @@ PlainTextDocument::PlainTextDocument()
|
|||
|
||||
}
|
||||
|
||||
std::unique_ptr<PlainTextDocument> PlainTextDocument::Create()
|
||||
Ptr<PlainTextDocument> PlainTextDocument::Create()
|
||||
{
|
||||
return std::make_unique<PlainTextDocument>();
|
||||
}
|
||||
|
||||
std::string PlainTextDocument::GetContent() const
|
||||
String PlainTextDocument::GetContent() const
|
||||
{
|
||||
return mContent;
|
||||
}
|
||||
|
||||
void PlainTextDocument::SetContent(const std::string& content)
|
||||
void PlainTextDocument::SetContent(const String& content)
|
||||
{
|
||||
mContent = content;
|
||||
}
|
||||
|
|
|
@ -1,24 +1,24 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <memory>
|
||||
#include "String.h"
|
||||
#include "Pointer.h"
|
||||
|
||||
class PlainTextDocument
|
||||
{
|
||||
std::string mContent;
|
||||
String mContent;
|
||||
|
||||
public:
|
||||
|
||||
PlainTextDocument();
|
||||
|
||||
static std::unique_ptr<PlainTextDocument> Create();
|
||||
static Ptr<PlainTextDocument> Create();
|
||||
|
||||
std::string GetContent() const;
|
||||
String GetContent() const;
|
||||
|
||||
void SetContent(const std::string& content);
|
||||
void SetContent(const String& content);
|
||||
|
||||
void Clear();
|
||||
|
||||
};
|
||||
|
||||
using PlainTextDocumentUPtr = std::unique_ptr<PlainTextDocument>;
|
||||
using PlainTextDocumentUPtr = Ptr<PlainTextDocument>;
|
||||
|
|
|
@ -9,17 +9,17 @@ TextEditorController::TextEditorController()
|
|||
|
||||
}
|
||||
|
||||
std::unique_ptr<TextEditorController> TextEditorController::Create()
|
||||
Ptr<TextEditorController> TextEditorController::Create()
|
||||
{
|
||||
return std::make_unique<TextEditorController>();
|
||||
}
|
||||
|
||||
void TextEditorController::SetContent(const std::string& content)
|
||||
void TextEditorController::SetContent(const String& content)
|
||||
{
|
||||
mModel->GetDocument()->SetContent(content);
|
||||
}
|
||||
|
||||
std::string TextEditorController::GetContent() const
|
||||
String TextEditorController::GetContent() const
|
||||
{
|
||||
return mModel->GetDocument()->GetContent();
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
#include <memory>
|
||||
#include "Pointer.h"
|
||||
#include <filesystem>
|
||||
#include "TextEditorModel.h"
|
||||
|
||||
|
@ -9,7 +9,7 @@ public:
|
|||
|
||||
TextEditorController();
|
||||
|
||||
static std::unique_ptr<TextEditorController> Create();
|
||||
static Ptr<TextEditorController> Create();
|
||||
|
||||
void OnSave();
|
||||
|
||||
|
@ -17,9 +17,9 @@ public:
|
|||
|
||||
void OnLoad();
|
||||
|
||||
std::string GetContent() const;
|
||||
String GetContent() const;
|
||||
|
||||
void SetContent(const std::string& content);
|
||||
void SetContent(const String& content);
|
||||
|
||||
void SetSavePath(const std::filesystem::path& path);
|
||||
|
||||
|
@ -31,4 +31,4 @@ private:
|
|||
std::filesystem::path mLoadPath;
|
||||
};
|
||||
|
||||
using TextEditorControllerUPtr = std::unique_ptr<TextEditorController>;
|
||||
using TextEditorControllerUPtr = Ptr<TextEditorController>;
|
||||
|
|
|
@ -6,7 +6,7 @@ TextEditorModel::TextEditorModel()
|
|||
|
||||
}
|
||||
|
||||
std::unique_ptr<TextEditorModel> TextEditorModel::Create()
|
||||
Ptr<TextEditorModel> TextEditorModel::Create()
|
||||
{
|
||||
return std::make_unique<TextEditorModel>();
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "PlainTextDocument.h"
|
||||
#include <memory>
|
||||
#include "Pointer.h"
|
||||
|
||||
class TextEditorModel
|
||||
{
|
||||
|
@ -11,9 +11,9 @@ public:
|
|||
|
||||
TextEditorModel();
|
||||
|
||||
static std::unique_ptr<TextEditorModel> Create();
|
||||
static Ptr<TextEditorModel> Create();
|
||||
|
||||
PlainTextDocument* GetDocument() const;
|
||||
};
|
||||
|
||||
using TextEditorModelUPtr = std::unique_ptr<TextEditorModel>;
|
||||
using TextEditorModelUPtr = Ptr<TextEditorModel>;
|
||||
|
|
|
@ -81,7 +81,7 @@ void TextEditorView::initialize()
|
|||
addWidget(std::move(hSpacer));
|
||||
}
|
||||
|
||||
std::unique_ptr<TextEditorView> TextEditorView::Create()
|
||||
Ptr<TextEditorView> TextEditorView::Create()
|
||||
{
|
||||
return std::make_unique<TextEditorView>();
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@ class TextEditorView : public Widget
|
|||
public:
|
||||
TextEditorView();
|
||||
|
||||
static std::unique_ptr<TextEditorView> Create();
|
||||
static Ptr<TextEditorView> Create();
|
||||
|
||||
TextEditorController* getController();
|
||||
|
||||
|
@ -23,4 +23,4 @@ private:
|
|||
TextBox* mTextBox;
|
||||
TextEditorControllerUPtr mController;
|
||||
};
|
||||
using TextEditorViewUPtr = std::unique_ptr<TextEditorView>;
|
||||
using TextEditorViewUPtr = Ptr<TextEditorView>;
|
||||
|
|
|
@ -14,7 +14,7 @@ WebClientView::WebClientView()
|
|||
addWidget(std::move(label));
|
||||
}
|
||||
|
||||
std::unique_ptr<WebClientView> WebClientView::Create()
|
||||
Ptr<WebClientView> WebClientView::Create()
|
||||
{
|
||||
return std::make_unique<WebClientView>();
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ public:
|
|||
|
||||
WebClientView();
|
||||
|
||||
static std::unique_ptr<WebClientView> Create();
|
||||
static Ptr<WebClientView> Create();
|
||||
};
|
||||
|
||||
using WebClientViewUPtr = std::unique_ptr<WebClientView>;
|
||||
using WebClientViewUPtr = Ptr<WebClientView>;
|
||||
|
|
|
@ -23,7 +23,7 @@ Path ContentFile::getFilename() const
|
|||
return mFilename;
|
||||
}
|
||||
|
||||
std::string ContentFile::getOutputLocation() const
|
||||
String ContentFile::getOutputLocation() const
|
||||
{
|
||||
const auto metadata_item = getMetadataItem("save_as");
|
||||
return metadata_item.empty() ? PathUtils::getBaseFilename(mFilename) : metadata_item;
|
||||
|
@ -55,7 +55,7 @@ void ContentFile::doLinkTagSubstitution(const Path& basePath)
|
|||
}
|
||||
}
|
||||
|
||||
std::string ContentFile::getMetadataItem(const std::string& key) const
|
||||
String ContentFile::getMetadataItem(const String& key) const
|
||||
{
|
||||
const auto check = mMetadata.find(key);
|
||||
if (check == mMetadata.end())
|
||||
|
|
|
@ -3,17 +3,17 @@
|
|||
#include "MarkdownContentParser.h"
|
||||
#include "File.h"
|
||||
|
||||
#include <string>
|
||||
#include "String.h"
|
||||
#include <iostream>
|
||||
#include <unordered_map>
|
||||
#include Map.h
|
||||
|
||||
class MarkdownDocument;
|
||||
|
||||
class ContentFile
|
||||
{
|
||||
public:
|
||||
using FileMetadata = std::unordered_map<std::string, std::string>;
|
||||
using FileContentBody = std::vector<std::string>;
|
||||
using FileMetadata = Map<String, String>;
|
||||
using FileContentBody = Vector<String>;
|
||||
|
||||
ContentFile(const Path& filename);
|
||||
|
||||
|
@ -23,9 +23,9 @@ public:
|
|||
|
||||
virtual void load();
|
||||
|
||||
std::string getMetadataItem(const std::string& key) const;
|
||||
String getMetadataItem(const String& key) const;
|
||||
|
||||
virtual std::string getOutputLocation() const;
|
||||
virtual String getOutputLocation() const;
|
||||
|
||||
MarkdownDocument* getContentBody() const
|
||||
{
|
||||
|
@ -36,15 +36,15 @@ public:
|
|||
|
||||
void write(const Path& path);
|
||||
|
||||
void setProcessedOutput(const std::string& output)
|
||||
void setProcessedOutput(const String& output)
|
||||
{
|
||||
mProcessedOutput = output;
|
||||
}
|
||||
protected:
|
||||
Path mFilename;
|
||||
FileMetadata mMetadata;
|
||||
std::unique_ptr<MarkdownDocument> mContentBody;
|
||||
std::string mProcessedOutput;
|
||||
Ptr<MarkdownDocument> mContentBody;
|
||||
String mProcessedOutput;
|
||||
};
|
||||
|
||||
class ContentArticle : public ContentFile
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "File.h"
|
||||
|
||||
std::pair<MarkdownContentParser::FileMetadata, std::unique_ptr<MarkdownDocument>> MarkdownContentParser::run(const Path& path)
|
||||
std::pair<MarkdownContentParser::FileMetadata, Ptr<MarkdownDocument>> MarkdownContentParser::run(const Path& path)
|
||||
{
|
||||
FileMetadata metadata;
|
||||
FileMetadata output_metadata;
|
||||
|
@ -15,7 +15,7 @@ std::pair<MarkdownContentParser::FileMetadata, std::unique_ptr<MarkdownDocument>
|
|||
const auto lines = File(path).readLines();
|
||||
bool metadata_finished = false;
|
||||
|
||||
std::string content_body;
|
||||
String content_body;
|
||||
for (const auto& line : lines)
|
||||
{
|
||||
if (!metadata_finished)
|
||||
|
@ -54,11 +54,11 @@ std::pair<MarkdownContentParser::FileMetadata, std::unique_ptr<MarkdownDocument>
|
|||
return {output_metadata, std::move(document)};
|
||||
}
|
||||
|
||||
std::optional<MarkdownContentParser::FileMetadataItem> MarkdownContentParser::checkForMetadataItem(const std::string& line) const
|
||||
Optional<MarkdownContentParser::FileMetadataItem> MarkdownContentParser::checkForMetadataItem(const String& line) const
|
||||
{
|
||||
unsigned char_count = 0;
|
||||
std::string prefix;
|
||||
std::string suffix;
|
||||
String prefix;
|
||||
String suffix;
|
||||
bool building_prefix = true;
|
||||
for (const auto c : line)
|
||||
{
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include "String.h"
|
||||
#include <optional>
|
||||
#include <unordered_map>
|
||||
#include Map.h
|
||||
#include <filesystem>
|
||||
#include <vector>
|
||||
#include "Vector.h"
|
||||
|
||||
using Path = std::filesystem::path;
|
||||
|
||||
|
@ -13,10 +13,10 @@ class MarkdownDocument;
|
|||
class MarkdownContentParser
|
||||
{
|
||||
public:
|
||||
using FileMetadataItem = std::pair<std::string, std::string>;
|
||||
using FileMetadata = std::unordered_map<std::string, std::string>;
|
||||
using FileMetadataItem = std::pair<String, String>;
|
||||
using FileMetadata = Map<String, String>;
|
||||
|
||||
std::pair<FileMetadata, std::unique_ptr<MarkdownDocument>> run(const Path& path);
|
||||
std::pair<FileMetadata, Ptr<MarkdownDocument>> run(const Path& path);
|
||||
private:
|
||||
std::optional<FileMetadataItem> checkForMetadataItem(const std::string& line) const;
|
||||
Optional<FileMetadataItem> checkForMetadataItem(const String& line) const;
|
||||
};
|
||||
|
|
|
@ -5,7 +5,7 @@ Path SiteGeneratorConfig::getThemePath() const
|
|||
return mThemesPath;
|
||||
}
|
||||
|
||||
std::string SiteGeneratorConfig::getActiveTheme() const
|
||||
String SiteGeneratorConfig::getActiveTheme() const
|
||||
{
|
||||
return mActiveTheme;
|
||||
}
|
||||
|
@ -15,7 +15,7 @@ void SiteGeneratorConfig::setThemePath(const Path& path)
|
|||
mThemesPath = path;
|
||||
}
|
||||
|
||||
void SiteGeneratorConfig::setActiveTheme(const std::string& theme)
|
||||
void SiteGeneratorConfig::setActiveTheme(const String& theme)
|
||||
{
|
||||
mActiveTheme = theme;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include "String.h"
|
||||
#include <filesystem>
|
||||
|
||||
using Path = std::filesystem::path;
|
||||
|
@ -10,13 +10,13 @@ class SiteGeneratorConfig
|
|||
public:
|
||||
Path getThemePath() const;
|
||||
|
||||
std::string getActiveTheme() const;
|
||||
String getActiveTheme() const;
|
||||
|
||||
void setThemePath(const Path& path);
|
||||
|
||||
void setActiveTheme(const std::string& theme);
|
||||
void setActiveTheme(const String& theme);
|
||||
|
||||
private:
|
||||
Path mThemesPath;
|
||||
std::string mActiveTheme;
|
||||
String mActiveTheme;
|
||||
};
|
||||
|
|
|
@ -30,7 +30,7 @@ WebsiteGenerator::~WebsiteGenerator()
|
|||
|
||||
}
|
||||
|
||||
void WebsiteGenerator::findProject(const std::string& searchPath)
|
||||
void WebsiteGenerator::findProject(const String& searchPath)
|
||||
{
|
||||
const auto config_path = std::filesystem::path(searchPath) / "config.toml";
|
||||
if (std::filesystem::exists(config_path))
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include "String.h"
|
||||
#include <iostream>
|
||||
#include <filesystem>
|
||||
#include <unordered_map>
|
||||
#include <vector>
|
||||
#include Map.h
|
||||
#include "Vector.h"
|
||||
|
||||
using Path = std::filesystem::path;
|
||||
|
||||
|
@ -22,7 +22,7 @@ public:
|
|||
|
||||
void doSubstitutions();
|
||||
|
||||
void findProject(const std::string& searchPath);
|
||||
void findProject(const String& searchPath);
|
||||
|
||||
void parseContentFiles();
|
||||
|
||||
|
@ -47,9 +47,9 @@ private:
|
|||
|
||||
std::filesystem::path mProjectPath;
|
||||
|
||||
std::unique_ptr<SiteGeneratorConfig> mConfig;
|
||||
std::unique_ptr<TemplatingEngine> mTemplateEngine;
|
||||
Ptr<SiteGeneratorConfig> mConfig;
|
||||
Ptr<TemplatingEngine> mTemplateEngine;
|
||||
|
||||
std::vector<std::unique_ptr<ContentPage> > mPages;
|
||||
std::vector<std::unique_ptr<ContentArticle> > mArticles;
|
||||
Vector<Ptr<ContentPage> > mPages;
|
||||
Vector<Ptr<ContentArticle> > mArticles;
|
||||
};
|
||||
|
|
46
bootstrap.sh
Executable file
46
bootstrap.sh
Executable file
|
@ -0,0 +1,46 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||||
SOURCE_DIR=$SCRIPT_DIR/src
|
||||
CORE_SRC_DIR=$SOURCE_DIR/base/core
|
||||
|
||||
g++ $SOURCE_DIR/main.cpp \
|
||||
$CORE_SRC_DIR/base_types/Error.cpp \
|
||||
$CORE_SRC_DIR/base_types/Index.cpp \
|
||||
$CORE_SRC_DIR/base_types/Char.cpp \
|
||||
$SOURCE_DIR/base/compiler/buildsystem/BuildEnvironment.cpp \
|
||||
$SOURCE_DIR/base/compiler/buildsystem/BuildConfig.cpp \
|
||||
$SOURCE_DIR/base/compiler/buildsystem/BuildBinary.cpp \
|
||||
$SOURCE_DIR/base/compiler/buildsystem/BuildTarget.cpp \
|
||||
$SOURCE_DIR/base/compiler/buildsystem/BuildLibrary.cpp \
|
||||
$SOURCE_DIR/base/compiler/buildsystem/BuildExecutable.cpp \
|
||||
$SOURCE_DIR/base/compiler/buildsystem/BuildSession.cpp \
|
||||
$CORE_SRC_DIR/data_structures/String.cpp \
|
||||
$CORE_SRC_DIR/filesystem/FileSystemPath.cpp \
|
||||
$CORE_SRC_DIR/filesystem/File.cpp \
|
||||
$CORE_SRC_DIR/filesystem/FileFormats.cpp \
|
||||
$CORE_SRC_DIR/filesystem/posix/FilePosixImpl.cpp \
|
||||
$CORE_SRC_DIR/filesystem/Directory.cpp \
|
||||
$CORE_SRC_DIR/logging/ConsoleLogger.cpp \
|
||||
$CORE_SRC_DIR/logging/Logger.cpp \
|
||||
$CORE_SRC_DIR/serialization/yaml/YamlDocuments.cpp \
|
||||
$CORE_SRC_DIR/serialization/yaml/YamlDocument.cpp \
|
||||
$CORE_SRC_DIR/serialization/yaml/YamlParser.cpp \
|
||||
$CORE_SRC_DIR/streams/FileStream.cpp \
|
||||
$CORE_SRC_DIR/streams/Stream.cpp \
|
||||
$CORE_SRC_DIR/system/process/Process.cpp \
|
||||
$CORE_SRC_DIR/time/Time.cpp \
|
||||
-o builder -g -fno-exceptions -fno-rtti \
|
||||
-I$CORE_SRC_DIR/base_types \
|
||||
-I$SOURCE_DIR/base/compiler/buildsystem \
|
||||
-I$CORE_SRC_DIR/data_structures \
|
||||
-I$CORE_SRC_DIR/encoding \
|
||||
-I$CORE_SRC_DIR/filesystem \
|
||||
-I$CORE_SRC_DIR/filesystem/posix \
|
||||
-I$CORE_SRC_DIR/logging \
|
||||
-I$CORE_SRC_DIR/memory \
|
||||
-I$CORE_SRC_DIR/serialization/yaml \
|
||||
-I$CORE_SRC_DIR/streams \
|
||||
-I$CORE_SRC_DIR/system/process \
|
||||
-I$CORE_SRC_DIR/time
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <memory>
|
||||
#include "String.h"
|
||||
#include "Pointer.h"
|
||||
|
||||
|
||||
class CircuitElement
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
#include "Pointer.h"
|
||||
#include "Vector.h"
|
||||
|
||||
#include "CircuitElement.h"
|
||||
#include "LogicGate.h"
|
||||
#include "Terminal.h"
|
||||
|
||||
using LogicGatePtr = std::unique_ptr<LogicGate>;
|
||||
using LogicGatePtr = Ptr<LogicGate>;
|
||||
|
||||
class ElectronicCircuit
|
||||
{
|
||||
|
@ -20,33 +20,33 @@ public:
|
|||
|
||||
void addLogicGate(LogicGatePtr gate);
|
||||
|
||||
const std::vector<Terminal*>& getInputTerminals() const
|
||||
const Vector<Terminal*>& getInputTerminals() const
|
||||
{
|
||||
return mInputTerminals;
|
||||
}
|
||||
|
||||
const std::vector<Terminal*>& getOutputTerminals() const
|
||||
const Vector<Terminal*>& getOutputTerminals() const
|
||||
{
|
||||
return mOutputTerminals;
|
||||
}
|
||||
|
||||
const std::vector<LogicGate*>& getLogicGates() const
|
||||
const Vector<LogicGate*>& getLogicGates() const
|
||||
{
|
||||
return mLogicGates;
|
||||
}
|
||||
|
||||
const std::vector<Wire*>& getWires() const
|
||||
const Vector<Wire*>& getWires() const
|
||||
{
|
||||
return mWires;
|
||||
}
|
||||
|
||||
private:
|
||||
std::vector<Terminal*> mInputTerminals;
|
||||
std::vector<Terminal*> mOutputTerminals;
|
||||
Vector<Terminal*> mInputTerminals;
|
||||
Vector<Terminal*> mOutputTerminals;
|
||||
|
||||
std::vector<Wire*> mWires;
|
||||
Vector<Wire*> mWires;
|
||||
|
||||
std::vector<LogicGate*> mLogicGates;
|
||||
Vector<LogicGate*> mLogicGates;
|
||||
|
||||
std::vector<std::unique_ptr<CircuitElement> > mElements;
|
||||
Vector<Ptr<CircuitElement> > mElements;
|
||||
};
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "Terminal.h"
|
||||
|
||||
Terminal::Terminal(TerminalType type, const std::string& label)
|
||||
Terminal::Terminal(TerminalType type, const String& label)
|
||||
: mLabel(label),
|
||||
mType(type)
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include "CircuitElement.h"
|
||||
|
||||
#include <string>
|
||||
#include "String.h"
|
||||
|
||||
class Wire;
|
||||
|
||||
|
@ -15,7 +15,7 @@ public:
|
|||
OUTPUT
|
||||
};
|
||||
|
||||
Terminal(TerminalType type, const std::string& label = {});
|
||||
Terminal(TerminalType type, const String& label = {});
|
||||
|
||||
Wire* getConnection() const;
|
||||
|
||||
|
@ -27,8 +27,8 @@ public:
|
|||
void setConnection(Wire* connection);
|
||||
|
||||
private:
|
||||
std::string mLabel;
|
||||
String mLabel;
|
||||
TerminalType mType;
|
||||
Wire* mConnection{ nullptr };
|
||||
};
|
||||
using TerminalPtr = std::unique_ptr<Terminal>;
|
||||
using TerminalPtr = Ptr<Terminal>;
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
#pragma once
|
||||
|
||||
#include <map>
|
||||
#include <vector>
|
||||
#include "Vector.h"
|
||||
|
||||
class TruthTable
|
||||
{
|
||||
public:
|
||||
using TableData = std::map<std::vector<bool>, std::vector<bool> >;
|
||||
using TableData = std::map<Vector<bool>, Vector<bool> >;
|
||||
|
||||
TruthTable(std::size_t, std::size_t)
|
||||
TruthTable(size_t, size_t)
|
||||
//: mNumInputColumns(numInputColumns),
|
||||
// mNumOutputColumns(numOutputColumns)
|
||||
{
|
||||
|
@ -25,8 +25,8 @@ public:
|
|||
static const TruthTable::TableData AND_TRUTH_TABLE;
|
||||
|
||||
private:
|
||||
//std::size_t mNumInputColumns{ 0 };
|
||||
//std::size_t mNumOutputColumns{ 0 };
|
||||
//size_t mNumInputColumns{ 0 };
|
||||
//size_t mNumOutputColumns{ 0 };
|
||||
|
||||
TableData mTable;
|
||||
};
|
||||
|
|
|
@ -18,7 +18,7 @@ private:
|
|||
CircuitElement* mInput{ nullptr };
|
||||
CircuitElement* mOutput{ nullptr };
|
||||
};
|
||||
using WirePtr = std::unique_ptr<Wire>;
|
||||
using WirePtr = Ptr<Wire>;
|
||||
|
||||
class Fanout : public CircuitElement
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "LogicGate.h"
|
||||
|
||||
NInMOutLogicGate::NInMOutLogicGate(std::size_t numIn, std::size_t numOut, std::vector<Wire*> inputs, std::vector<Wire*> outputs)
|
||||
NInMOutLogicGate::NInMOutLogicGate(size_t numIn, size_t numOut, Vector<Wire*> inputs, Vector<Wire*> outputs)
|
||||
: LogicGate(),
|
||||
mNumIn(numIn),
|
||||
mNumOut(numOut)
|
||||
|
@ -11,7 +11,7 @@ NInMOutLogicGate::NInMOutLogicGate(std::size_t numIn, std::size_t numOut, std::v
|
|||
}
|
||||
else
|
||||
{
|
||||
mInputs = std::vector<Wire*>(numIn, nullptr);
|
||||
mInputs = Vector<Wire*>(numIn, nullptr);
|
||||
}
|
||||
|
||||
if (outputs.size() == mNumOut)
|
||||
|
@ -20,21 +20,21 @@ NInMOutLogicGate::NInMOutLogicGate(std::size_t numIn, std::size_t numOut, std::v
|
|||
}
|
||||
else
|
||||
{
|
||||
mOutputs = std::vector<Wire*>(numOut, nullptr);
|
||||
mOutputs = Vector<Wire*>(numOut, nullptr);
|
||||
}
|
||||
}
|
||||
|
||||
std::size_t NInMOutLogicGate::getNumInputs() const
|
||||
size_t NInMOutLogicGate::getNumInputs() const
|
||||
{
|
||||
return mNumIn;
|
||||
}
|
||||
|
||||
std::size_t NInMOutLogicGate::getNumOutputs() const
|
||||
size_t NInMOutLogicGate::getNumOutputs() const
|
||||
{
|
||||
return mNumOut;
|
||||
}
|
||||
|
||||
Wire* NInMOutLogicGate::getInput(std::size_t idx) const
|
||||
Wire* NInMOutLogicGate::getInput(size_t idx) const
|
||||
{
|
||||
if (idx < mNumIn)
|
||||
{
|
||||
|
@ -46,7 +46,7 @@ Wire* NInMOutLogicGate::getInput(std::size_t idx) const
|
|||
}
|
||||
}
|
||||
|
||||
Wire* NInMOutLogicGate::getOutput(std::size_t idx) const
|
||||
Wire* NInMOutLogicGate::getOutput(size_t idx) const
|
||||
{
|
||||
if (idx < mNumOut)
|
||||
{
|
||||
|
@ -58,7 +58,7 @@ Wire* NInMOutLogicGate::getOutput(std::size_t idx) const
|
|||
}
|
||||
}
|
||||
|
||||
void NInMOutLogicGate::setAtInput(std::size_t idx, Wire* value)
|
||||
void NInMOutLogicGate::setAtInput(size_t idx, Wire* value)
|
||||
{
|
||||
if (idx < mInputs.size())
|
||||
{
|
||||
|
@ -66,7 +66,7 @@ void NInMOutLogicGate::setAtInput(std::size_t idx, Wire* value)
|
|||
}
|
||||
}
|
||||
|
||||
void NInMOutLogicGate::setAtOutput(std::size_t idx, Wire* value)
|
||||
void NInMOutLogicGate::setAtOutput(size_t idx, Wire* value)
|
||||
{
|
||||
if (idx < mOutputs.size())
|
||||
{
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
#include "TruthTable.h"
|
||||
#include "Wire.h"
|
||||
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
#include "Pointer.h"
|
||||
#include "Vector.h"
|
||||
|
||||
class LogicGate : public CircuitElement
|
||||
{
|
||||
|
@ -20,13 +20,13 @@ public:
|
|||
};
|
||||
virtual ~LogicGate() = default;
|
||||
|
||||
virtual std::size_t getNumInputs() const = 0;
|
||||
virtual size_t getNumInputs() const = 0;
|
||||
|
||||
virtual std::size_t getNumOutputs() const = 0;
|
||||
virtual size_t getNumOutputs() const = 0;
|
||||
|
||||
virtual Wire* getInput(std::size_t idx) const = 0;
|
||||
virtual Wire* getInput(size_t idx) const = 0;
|
||||
|
||||
virtual Wire* getOutput(std::size_t idx) const = 0;
|
||||
virtual Wire* getOutput(size_t idx) const = 0;
|
||||
|
||||
virtual const TruthTable& getTruthTable() = 0;
|
||||
|
||||
|
@ -41,28 +41,28 @@ public:
|
|||
class NInMOutLogicGate : public LogicGate
|
||||
{
|
||||
public:
|
||||
NInMOutLogicGate(std::size_t numIn, std::size_t numOut, std::vector<Wire*> inputs = {}, std::vector<Wire*> outputs = {});
|
||||
NInMOutLogicGate(size_t numIn, size_t numOut, Vector<Wire*> inputs = {}, Vector<Wire*> outputs = {});
|
||||
|
||||
virtual ~NInMOutLogicGate() = default;
|
||||
|
||||
std::size_t getNumInputs() const override;
|
||||
size_t getNumInputs() const override;
|
||||
|
||||
std::size_t getNumOutputs() const override;
|
||||
size_t getNumOutputs() const override;
|
||||
|
||||
Wire* getInput(std::size_t idx) const override;
|
||||
Wire* getInput(size_t idx) const override;
|
||||
|
||||
Wire* getOutput(std::size_t idx) const override;
|
||||
Wire* getOutput(size_t idx) const override;
|
||||
|
||||
void setAtInput(std::size_t idx, Wire* value);
|
||||
void setAtInput(size_t idx, Wire* value);
|
||||
|
||||
void setAtOutput(std::size_t idx, Wire* value);
|
||||
void setAtOutput(size_t idx, Wire* value);
|
||||
|
||||
private:
|
||||
std::size_t mNumIn{ 1 };
|
||||
std::size_t mNumOut{ 1 };
|
||||
size_t mNumIn{ 1 };
|
||||
size_t mNumOut{ 1 };
|
||||
|
||||
std::vector<Wire*> mInputs;
|
||||
std::vector<Wire*> mOutputs;
|
||||
Vector<Wire*> mInputs;
|
||||
Vector<Wire*> mOutputs;
|
||||
};
|
||||
|
||||
class TwoInOneOutLogicGate : public NInMOutLogicGate
|
||||
|
|
|
@ -37,12 +37,12 @@ void ElectronicCircuitNode::buildWireConnections()
|
|||
|
||||
for (auto gate : mContent->getLogicGates())
|
||||
{
|
||||
for (std::size_t idx = 0; idx < gate->getNumInputs(); idx++)
|
||||
for (size_t idx = 0; idx < gate->getNumInputs(); idx++)
|
||||
{
|
||||
mWireInputConnections[gate->getInput(idx)] = gate;
|
||||
}
|
||||
|
||||
for (std::size_t idx = 0; idx < gate->getNumOutputs(); idx++)
|
||||
for (size_t idx = 0; idx < gate->getNumOutputs(); idx++)
|
||||
{
|
||||
mWireOutputConnections[gate->getOutput(idx)] = gate;
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
#include "ElectronicCircuit.h"
|
||||
|
||||
#include <unordered_map>
|
||||
#include Map.h
|
||||
|
||||
class WireNode;
|
||||
class TerminalNode;
|
||||
|
@ -31,13 +31,13 @@ private:
|
|||
ElectronicCircuit* mContent{ nullptr };
|
||||
bool mContentDirty{ true };
|
||||
|
||||
std::vector<std::unique_ptr<TerminalNode> > mInputTerminalNodes;
|
||||
std::vector<std::unique_ptr<TerminalNode> > mOutputTerminalNodes;
|
||||
std::vector<std::unique_ptr<WireNode> > mWireNodes;
|
||||
std::vector<std::unique_ptr<LogicGateNode> > mLogicGateNodes;
|
||||
Vector<Ptr<TerminalNode> > mInputTerminalNodes;
|
||||
Vector<Ptr<TerminalNode> > mOutputTerminalNodes;
|
||||
Vector<Ptr<WireNode> > mWireNodes;
|
||||
Vector<Ptr<LogicGateNode> > mLogicGateNodes;
|
||||
|
||||
std::unordered_map<Wire*, CircuitElement*> mWireInputConnections;
|
||||
std::unordered_map<Wire*, CircuitElement*> mWireOutputConnections;
|
||||
Map<Wire*, CircuitElement*> mWireInputConnections;
|
||||
Map<Wire*, CircuitElement*> mWireOutputConnections;
|
||||
|
||||
std::unordered_map<CircuitElement*, CircuitElementNode*> mNodesForContent;
|
||||
Map<CircuitElement*, CircuitElementNode*> mNodesForContent;
|
||||
};
|
||||
|
|
|
@ -21,9 +21,9 @@ LogicGateNode::~LogicGateNode()
|
|||
Point2 LogicGateNode::getConnectionLocation(Wire* wire) const
|
||||
{
|
||||
bool is_input{ false };
|
||||
std::size_t connection_id{ 0 };
|
||||
size_t connection_id{ 0 };
|
||||
|
||||
for (std::size_t idx = 0; idx < mContent->getNumInputs(); idx++)
|
||||
for (size_t idx = 0; idx < mContent->getNumInputs(); idx++)
|
||||
{
|
||||
if (mContent->getInput(idx) == wire)
|
||||
{
|
||||
|
@ -33,7 +33,7 @@ Point2 LogicGateNode::getConnectionLocation(Wire* wire) const
|
|||
}
|
||||
}
|
||||
|
||||
for (std::size_t idx = 0; idx < mContent->getNumOutputs(); idx++)
|
||||
for (size_t idx = 0; idx < mContent->getNumOutputs(); idx++)
|
||||
{
|
||||
if (mContent->getOutput(idx) == wire)
|
||||
{
|
||||
|
|
|
@ -25,6 +25,6 @@ private:
|
|||
LogicGate* mContent{ nullptr };
|
||||
bool mContentDirty{ true };
|
||||
|
||||
std::unique_ptr<PathNode> mPrimaryPath;
|
||||
std::unique_ptr<CircleNode> mNegationGlyph;
|
||||
Ptr<PathNode> mPrimaryPath;
|
||||
Ptr<CircleNode> mNegationGlyph;
|
||||
};
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
#include "LogicGatePrimitiveShapes.h"
|
||||
|
||||
std::string LogicGatePrimitiveShapes::getAndGateShape()
|
||||
String LogicGatePrimitiveShapes::getAndGateShape()
|
||||
{
|
||||
return "M4 8 h24 a16 16 0 0 1 0 32 h-24Z";
|
||||
}
|
||||
|
||||
Point2 LogicGatePrimitiveShapes::getAndGateConnectionLocation(bool isInput, std::size_t idx)
|
||||
Point2 LogicGatePrimitiveShapes::getAndGateConnectionLocation(bool isInput, size_t idx)
|
||||
{
|
||||
if (isInput)
|
||||
{
|
||||
|
@ -24,12 +24,12 @@ Point2 LogicGatePrimitiveShapes::getAndGateConnectionLocation(bool isInput, std:
|
|||
}
|
||||
}
|
||||
|
||||
std::string LogicGatePrimitiveShapes::getOrGateShape()
|
||||
String LogicGatePrimitiveShapes::getOrGateShape()
|
||||
{
|
||||
return "M4 8 h16 q16 2 24 16 q-12 16 -24 16 h-16 q12 -16 0 -32Z";
|
||||
}
|
||||
|
||||
Point2 LogicGatePrimitiveShapes::getOrGateConnectionLocation(bool isInput, std::size_t idx)
|
||||
Point2 LogicGatePrimitiveShapes::getOrGateConnectionLocation(bool isInput, size_t idx)
|
||||
{
|
||||
if (isInput)
|
||||
{
|
||||
|
|
|
@ -2,16 +2,16 @@
|
|||
|
||||
#include "Point.h"
|
||||
|
||||
#include <string>
|
||||
#include "String.h"
|
||||
|
||||
class LogicGatePrimitiveShapes
|
||||
{
|
||||
public:
|
||||
static Point2 getAndGateConnectionLocation(bool isInput, std::size_t idx);
|
||||
static Point2 getAndGateConnectionLocation(bool isInput, size_t idx);
|
||||
|
||||
static std::string getAndGateShape();
|
||||
static String getAndGateShape();
|
||||
|
||||
static Point2 getOrGateConnectionLocation(bool isInput, std::size_t idx);
|
||||
static Point2 getOrGateConnectionLocation(bool isInput, size_t idx);
|
||||
|
||||
static std::string getOrGateShape();
|
||||
static String getOrGateShape();
|
||||
};
|
|
@ -19,7 +19,7 @@ public:
|
|||
|
||||
private:
|
||||
void createOrUpdateGeometry(SceneInfo* sceneInfo);
|
||||
std::unique_ptr<CircleNode> mMarker;
|
||||
Ptr<CircleNode> mMarker;
|
||||
|
||||
Terminal* mContent{ nullptr };
|
||||
bool mContentDirty{ true };
|
||||
|
|
|
@ -48,7 +48,7 @@ void WireNode::createOrUpdateGeometry(SceneInfo*)
|
|||
auto loc = mOutputLocation;
|
||||
loc.moveBy(-mInputLocation.getX(), -mInputLocation.getY(), -mInputLocation.getZ());
|
||||
|
||||
std::vector<Point2> points;
|
||||
Vector<Point2> points;
|
||||
|
||||
if (loc.getY() == 0.0)
|
||||
{
|
||||
|
|
|
@ -26,5 +26,5 @@ private:
|
|||
Point2 mInputLocation;
|
||||
Point2 mOutputLocation;
|
||||
|
||||
std::unique_ptr<LineNode> mLine;
|
||||
Ptr<LineNode> mLine;
|
||||
};
|
|
@ -9,7 +9,7 @@ MetaMidiEvent::MetaMidiEvent()
|
|||
|
||||
}
|
||||
|
||||
std::unique_ptr<MetaMidiEvent> MetaMidiEvent::Create()
|
||||
Ptr<MetaMidiEvent> MetaMidiEvent::Create()
|
||||
{
|
||||
return std::make_unique<MetaMidiEvent>();
|
||||
}
|
||||
|
@ -79,7 +79,7 @@ void MetaMidiEvent::SetValue(int value)
|
|||
mValue = value;
|
||||
}
|
||||
|
||||
void MetaMidiEvent::SetLabel(const std::string& label)
|
||||
void MetaMidiEvent::SetLabel(const String& label)
|
||||
{
|
||||
mLabel = label;
|
||||
}
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
#include "MidiEvent.h"
|
||||
#include "MidiElements.h"
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include "Pointer.h"
|
||||
#include "String.h"
|
||||
|
||||
class MetaMidiEvent : public MidiEvent
|
||||
{
|
||||
|
@ -51,13 +51,13 @@ private:
|
|||
public:
|
||||
|
||||
MetaMidiEvent();
|
||||
static std::unique_ptr<MetaMidiEvent> Create();
|
||||
static Ptr<MetaMidiEvent> Create();
|
||||
|
||||
void SetValue(int value);
|
||||
void SetType(char c);
|
||||
Type GetType() const;
|
||||
|
||||
void SetLabel(const std::string& label);
|
||||
void SetLabel(const String& label);
|
||||
void SetTimeSignature(const MidiTimeSignature& timeSig);
|
||||
void SetTimeCode(const MidiSmtpeTimecode& timeCode);
|
||||
void SetKeySignature(const MidiKeySignature& keySig);
|
||||
|
@ -65,11 +65,11 @@ public:
|
|||
private:
|
||||
Type mType {Type::UNSET};
|
||||
char mUnKnownMarker{0};
|
||||
std::string mLabel;
|
||||
String mLabel;
|
||||
int mValue { 0 };
|
||||
MidiTimeSignature mTimeSig;
|
||||
MidiSmtpeTimecode mTimecode;
|
||||
MidiKeySignature mKeySig;
|
||||
};
|
||||
|
||||
using MetaMidiEventPtr = std::unique_ptr<MetaMidiEvent>;
|
||||
using MetaMidiEventPtr = Ptr<MetaMidiEvent>;
|
||||
|
|
|
@ -9,7 +9,7 @@ MidiChannelEvent::MidiChannelEvent()
|
|||
|
||||
}
|
||||
|
||||
std::unique_ptr<MidiChannelEvent> MidiChannelEvent::Create()
|
||||
Ptr<MidiChannelEvent> MidiChannelEvent::Create()
|
||||
{
|
||||
return std::make_unique<MidiChannelEvent>();
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "MidiEvent.h"
|
||||
#include <string>
|
||||
#include "String.h"
|
||||
|
||||
class MidiChannelEvent : public MidiEvent
|
||||
{
|
||||
|
@ -52,7 +52,7 @@ private:
|
|||
|
||||
public:
|
||||
MidiChannelEvent();
|
||||
static std::unique_ptr<MidiChannelEvent> Create();
|
||||
static Ptr<MidiChannelEvent> Create();
|
||||
|
||||
void SetTypeAndChannel(char c);
|
||||
void SetType(Type type);
|
||||
|
@ -69,4 +69,4 @@ private:
|
|||
int mValue1 {1};
|
||||
};
|
||||
|
||||
using MidiChannelEventPtr = std::unique_ptr<MidiChannelEvent>;
|
||||
using MidiChannelEventPtr = Ptr<MidiChannelEvent>;
|
||||
|
|
|
@ -7,7 +7,7 @@ MidiDocument::MidiDocument()
|
|||
|
||||
}
|
||||
|
||||
std::unique_ptr<MidiDocument> MidiDocument::Create()
|
||||
Ptr<MidiDocument> MidiDocument::Create()
|
||||
{
|
||||
return std::make_unique<MidiDocument>();
|
||||
}
|
||||
|
@ -32,9 +32,9 @@ void MidiDocument::SetTimeDivision(const MidiTimeDivision& timeDivision)
|
|||
mTimeDivision = timeDivision;
|
||||
}
|
||||
|
||||
std::string MidiDocument::Serialize() const
|
||||
String MidiDocument::Serialize() const
|
||||
{
|
||||
std::string output = "MidiDocument\n";
|
||||
String output = "MidiDocument\n";
|
||||
output += "Format type: " + std::to_string(mFormatType) + "\n";
|
||||
output += "Expected Tracks: " + std::to_string(mExpectedTracks) + "\n";
|
||||
output += "Use fps: " + std::to_string(mTimeDivision.mUseFps) + "\n";
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include "Vector.h"
|
||||
#include "Pointer.h"
|
||||
#include "String.h"
|
||||
|
||||
#include "MidiElements.h"
|
||||
|
||||
class MidiTrack;
|
||||
using MidiTrackPtr = std::unique_ptr<MidiTrack>;
|
||||
using MidiTrackPtr = Ptr<MidiTrack>;
|
||||
|
||||
class MidiDocument
|
||||
{
|
||||
public:
|
||||
MidiDocument();
|
||||
|
||||
static std::unique_ptr<MidiDocument> Create();
|
||||
static Ptr<MidiDocument> Create();
|
||||
|
||||
void AddTrack(MidiTrackPtr track);
|
||||
|
||||
|
@ -22,13 +22,13 @@ public:
|
|||
void SetExpectedTracks(int expected);
|
||||
void SetTimeDivision(const MidiTimeDivision& timeDivision);
|
||||
|
||||
std::string Serialize() const;
|
||||
String Serialize() const;
|
||||
|
||||
private:
|
||||
int mFormatType = 0;
|
||||
int mExpectedTracks = 0;
|
||||
MidiTimeDivision mTimeDivision;
|
||||
std::vector<MidiTrackPtr> mTracks;
|
||||
Vector<MidiTrackPtr> mTracks;
|
||||
};
|
||||
|
||||
using MidiDocumentPtr = std::unique_ptr<MidiDocument>;
|
||||
using MidiDocumentPtr = Ptr<MidiDocument>;
|
||||
|
|
|
@ -6,7 +6,7 @@ MidiEvent::MidiEvent()
|
|||
|
||||
}
|
||||
|
||||
std::unique_ptr<MidiEvent> MidiEvent::Create()
|
||||
Ptr<MidiEvent> MidiEvent::Create()
|
||||
{
|
||||
return std::make_unique<MidiEvent>();
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include "Pointer.h"
|
||||
|
||||
class MidiEvent
|
||||
{
|
||||
|
@ -13,7 +13,7 @@ public:
|
|||
MidiEvent();
|
||||
virtual ~MidiEvent() = default;
|
||||
|
||||
static std::unique_ptr<MidiEvent> Create();
|
||||
static Ptr<MidiEvent> Create();
|
||||
|
||||
void SetTimeDelta(int delta);
|
||||
|
||||
|
@ -26,4 +26,4 @@ private:
|
|||
int mTimeDelta{0};
|
||||
};
|
||||
|
||||
using MidiEventPtr = std::unique_ptr<MidiEvent>;
|
||||
using MidiEventPtr = Ptr<MidiEvent>;
|
||||
|
|
|
@ -17,19 +17,19 @@ void MidiTrack::AddEvent(MidiEventPtr event)
|
|||
mEvents.push_back(std::move(event));
|
||||
}
|
||||
|
||||
MidiEvent* MidiTrack::GetEvent(std::size_t idx) const
|
||||
MidiEvent* MidiTrack::GetEvent(size_t idx) const
|
||||
{
|
||||
return mEvents[idx].get();
|
||||
}
|
||||
|
||||
std::size_t MidiTrack::GetNumEvents()
|
||||
size_t MidiTrack::GetNumEvents()
|
||||
{
|
||||
return mEvents.size();
|
||||
}
|
||||
|
||||
std::string MidiTrack::Serialize() const
|
||||
String MidiTrack::Serialize() const
|
||||
{
|
||||
std::string output = "MidiTrack\n";
|
||||
String output = "MidiTrack\n";
|
||||
output += "Num Events: " + std::to_string(mEvents.size()) + "\n";
|
||||
return output;
|
||||
}
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include "Vector.h"
|
||||
#include "Pointer.h"
|
||||
#include "String.h"
|
||||
#include "MidiEvent.h"
|
||||
|
||||
class MidiEvent;
|
||||
using MidiEventPtr = std::unique_ptr<MidiEvent>;
|
||||
using MidiEventPtr = Ptr<MidiEvent>;
|
||||
|
||||
class MidiTrack
|
||||
{
|
||||
|
@ -18,13 +18,13 @@ public:
|
|||
|
||||
void AddEvent(MidiEventPtr event);
|
||||
|
||||
MidiEvent* GetEvent(std::size_t idx) const;
|
||||
MidiEvent* GetEvent(size_t idx) const;
|
||||
|
||||
std::size_t GetNumEvents();
|
||||
size_t GetNumEvents();
|
||||
|
||||
std::string Serialize() const;
|
||||
String Serialize() const;
|
||||
|
||||
private:
|
||||
|
||||
std::vector<MidiEventPtr> mEvents;
|
||||
Vector<MidiEventPtr> mEvents;
|
||||
};
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "MidiChannelEventAdapter.h"
|
||||
|
||||
#include "BinaryStream.h"
|
||||
#include "ByteUtils.h"
|
||||
#include "Bits.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <bitset>
|
||||
|
@ -19,7 +19,7 @@ int MidiChannelEventAdapter::readEvent(std::ifstream* file, char firstByte, Midi
|
|||
unsigned byteCount = 0;
|
||||
//std::cout << "Channel: " << midi_channel << std::endl;
|
||||
|
||||
const bool isStatusByte = ByteUtils::MostSignificantBitIsOne(firstByte);
|
||||
const bool isStatusByte = Bits::MostSignificantBitIsOne(firstByte);
|
||||
if(isStatusByte)
|
||||
{
|
||||
event->SetTypeAndChannel(firstByte);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "MidiMetaEventAdapter.h"
|
||||
|
||||
#include "BinaryStream.h"
|
||||
#include "ByteUtils.h"
|
||||
#include "Bits.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <bitset>
|
||||
|
@ -83,7 +83,7 @@ int MidiMetaEventAdapter::ReadStringEvent(std::ifstream* file, MetaMidiEvent* ev
|
|||
int length = *BinaryStream::getNextByteAsInt(file);
|
||||
byteCount++;
|
||||
|
||||
std::string name;
|
||||
String name;
|
||||
BinaryStream::getNextString(file, name, length);
|
||||
byteCount += length;
|
||||
event->SetLabel(name);
|
||||
|
@ -104,11 +104,11 @@ int MidiMetaEventAdapter::ReadIntEvent(std::ifstream* file, MetaMidiEvent* event
|
|||
byteCount ++;
|
||||
}
|
||||
|
||||
std::string buffer;
|
||||
String buffer;
|
||||
BinaryStream::getNextNBytes(file, buffer.data(), length);
|
||||
byteCount += length;
|
||||
|
||||
const int value = ByteUtils::ToType<ByteUtils::DWord>(buffer.data(), length);
|
||||
const int value = Bits::ToType<Bits::DWord>(buffer.data(), length);
|
||||
event->SetValue(value);
|
||||
return byteCount;
|
||||
}
|
||||
|
@ -119,11 +119,11 @@ int MidiMetaEventAdapter::ReadChannelPrefixEvent(std::ifstream* file, MetaMidiEv
|
|||
int length = *BinaryStream::getNextByteAsInt(file);
|
||||
byteCount ++;
|
||||
|
||||
std::string buffer;
|
||||
String buffer;
|
||||
BinaryStream::getNextNBytes(file, buffer.data(), length);
|
||||
byteCount += length;
|
||||
|
||||
const int value = ByteUtils::ToType<ByteUtils::DWord>(buffer.data(), length);
|
||||
const int value = Bits::ToType<Bits::DWord>(buffer.data(), length);
|
||||
event->SetValue(value);
|
||||
lastMidiChannel = value;
|
||||
return byteCount;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "MidiReader.h"
|
||||
|
||||
#include "MidiDocument.h"
|
||||
#include "ByteUtils.h"
|
||||
#include "Bits.h"
|
||||
#include "MidiTrack.h"
|
||||
#include "BinaryStream.h"
|
||||
#include "FileLogger.h"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include "File.h"
|
||||
|
||||
#include <filesystem>
|
||||
#include <string>
|
||||
#include "String.h"
|
||||
|
||||
using Path = std::filesystem::path;
|
||||
|
||||
|
@ -29,7 +29,7 @@ private:
|
|||
int processEvent(MidiTrack* track);
|
||||
|
||||
private:
|
||||
std::unique_ptr<File> mFile;
|
||||
Ptr<File> mFile;
|
||||
MidiDocumentPtr mDocument;
|
||||
int mLastMidiChannel {0};
|
||||
MidiChannelEvent::Type mLastChannelEventType;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "MidiTimeAdapter.h"
|
||||
|
||||
#include "BinaryStream.h"
|
||||
#include "ByteUtils.h"
|
||||
#include "Bits.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <bitset>
|
||||
|
@ -13,7 +13,7 @@ int MidiTimeAdapter::ReadEventTimeDelta(std::ifstream* file, int& delta)
|
|||
file->get(c);
|
||||
byteCount++;
|
||||
|
||||
if(!ByteUtils::MostSignificantBitIsOne(c))
|
||||
if(!Bits::MostSignificantBitIsOne(c))
|
||||
{
|
||||
delta = int(c);
|
||||
//std::cout << "Time delta final: " << delta << std::endl;
|
||||
|
@ -54,13 +54,13 @@ int MidiTimeAdapter::ReadTimeDivision(std::ifstream* file, MidiTimeDivision& div
|
|||
return -1;
|
||||
}
|
||||
|
||||
division.mUseFps = ByteUtils::GetWordFirstBit(*time_division);
|
||||
division.mUseFps = Bits::GetWordFirstBit(*time_division);
|
||||
if (division.mUseFps)
|
||||
{
|
||||
const int TOP_7_BITS = 0x7F00; // 0111 1111 - 0000 0000
|
||||
division.mFps = ((~(*time_division) & TOP_7_BITS) >> 8) - 1; // Reverse 2complement of next 7 bits
|
||||
}
|
||||
|
||||
division.mTicks = ByteUtils::GetWordLastByte(*time_division);
|
||||
division.mTicks = Bits::GetWordLastByte(*time_division);
|
||||
return 2; // Bytes advanced
|
||||
}
|
||||
|
|
|
@ -28,22 +28,22 @@ void QuantumCircuit::addLogicGate(QuantumGatePtr gate)
|
|||
mElements.push_back(std::move(gate));
|
||||
}
|
||||
|
||||
const std::vector<QuantumTerminal*>& QuantumCircuit::getInputTerminals() const
|
||||
const Vector<QuantumTerminal*>& QuantumCircuit::getInputTerminals() const
|
||||
{
|
||||
return mInputTerminals;
|
||||
}
|
||||
|
||||
const std::vector<QuantumTerminal*>& QuantumCircuit::getOutputTerminals() const
|
||||
const Vector<QuantumTerminal*>& QuantumCircuit::getOutputTerminals() const
|
||||
{
|
||||
return mOutputTerminals;
|
||||
}
|
||||
|
||||
const std::vector<QuantumGate*>& QuantumCircuit::getLogicGates() const
|
||||
const Vector<QuantumGate*>& QuantumCircuit::getLogicGates() const
|
||||
{
|
||||
return mGates;
|
||||
}
|
||||
|
||||
const std::vector<QuantumWire*>& QuantumCircuit::getQuantumWires() const
|
||||
const Vector<QuantumWire*>& QuantumCircuit::getQuantumWires() const
|
||||
{
|
||||
return mWires;
|
||||
}
|
||||
|
@ -94,7 +94,7 @@ void QuantumCircuit::buildWireConnections()
|
|||
{
|
||||
if (wire->getOutput() == gate)
|
||||
{
|
||||
for (std::size_t idx = 0; idx < gate->getNumInputs(); idx++)
|
||||
for (size_t idx = 0; idx < gate->getNumInputs(); idx++)
|
||||
{
|
||||
if (gate->getInput(idx) == nullptr)
|
||||
{
|
||||
|
@ -107,7 +107,7 @@ void QuantumCircuit::buildWireConnections()
|
|||
|
||||
if (wire->getInput() == gate)
|
||||
{
|
||||
for (std::size_t idx = 0; idx < gate->getNumOutputs(); idx++)
|
||||
for (size_t idx = 0; idx < gate->getNumOutputs(); idx++)
|
||||
{
|
||||
if (gate->getOutput(idx) == nullptr)
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include "QuantumWire.h"
|
||||
#include "QuantumState.h"
|
||||
|
||||
#include <vector>
|
||||
#include "Vector.h"
|
||||
|
||||
class QuantumCircuit
|
||||
{
|
||||
|
@ -21,24 +21,24 @@ public:
|
|||
|
||||
void buildWireConnections();
|
||||
|
||||
const std::vector<QuantumTerminal*>& getInputTerminals() const;
|
||||
const Vector<QuantumTerminal*>& getInputTerminals() const;
|
||||
|
||||
const std::vector<QuantumTerminal*>& getOutputTerminals() const;
|
||||
const Vector<QuantumTerminal*>& getOutputTerminals() const;
|
||||
|
||||
const std::vector<QuantumGate*>& getLogicGates() const;
|
||||
const Vector<QuantumGate*>& getLogicGates() const;
|
||||
|
||||
const std::vector<QuantumWire*>& getQuantumWires() const;
|
||||
const Vector<QuantumWire*>& getQuantumWires() const;
|
||||
|
||||
QuantumState getInputState() const;
|
||||
|
||||
private:
|
||||
bool connectivityIsValid() const;
|
||||
|
||||
std::vector<QuantumTerminal*> mInputTerminals;
|
||||
std::vector<QuantumTerminal*> mOutputTerminals;
|
||||
Vector<QuantumTerminal*> mInputTerminals;
|
||||
Vector<QuantumTerminal*> mOutputTerminals;
|
||||
|
||||
std::vector<QuantumWire*> mWires;
|
||||
std::vector<QuantumGate*> mGates;
|
||||
Vector<QuantumWire*> mWires;
|
||||
Vector<QuantumGate*> mGates;
|
||||
|
||||
std::vector<std::unique_ptr<QuantumCircuitElement> > mElements;
|
||||
Vector<Ptr<QuantumCircuitElement> > mElements;
|
||||
};
|
|
@ -10,18 +10,18 @@
|
|||
#include "StringUtils.h"
|
||||
#include "FileLogger.h"
|
||||
|
||||
std::unique_ptr<QuantumCircuit> QuantumCircuitReader::read(const Path& path)
|
||||
Ptr<QuantumCircuit> QuantumCircuitReader::read(const Path& path)
|
||||
{
|
||||
File file(path);
|
||||
return read(file.readText());
|
||||
}
|
||||
|
||||
std::unique_ptr<QuantumCircuit> QuantumCircuitReader::read(const std::string& content)
|
||||
Ptr<QuantumCircuit> QuantumCircuitReader::read(const String& content)
|
||||
{
|
||||
auto circuit = std::make_unique<QuantumCircuit>();
|
||||
mWorkingCircuit = circuit.get();
|
||||
|
||||
std::size_t cursor = 0;
|
||||
size_t cursor = 0;
|
||||
for (const auto& line : StringUtils::toLines(content))
|
||||
{
|
||||
onLine(line, cursor);
|
||||
|
@ -31,15 +31,15 @@ std::unique_ptr<QuantumCircuit> QuantumCircuitReader::read(const std::string& co
|
|||
return circuit;
|
||||
}
|
||||
|
||||
void QuantumCircuitReader::onLine(const std::string& line, std::size_t jdx)
|
||||
void QuantumCircuitReader::onLine(const String& line, size_t jdx)
|
||||
{
|
||||
mWorkingString.clear();
|
||||
std::size_t cursor = 0;
|
||||
size_t cursor = 0;
|
||||
|
||||
while (cursor < line.size())
|
||||
{
|
||||
const auto c = line[cursor];
|
||||
MLOG_INFO("Working char: " << std::string(1, c));
|
||||
MLOG_INFO("Working char: " << String(1, c));
|
||||
|
||||
if (c == '|')
|
||||
{
|
||||
|
@ -103,7 +103,7 @@ void QuantumCircuitReader::onLineEnd()
|
|||
mWorkingElement = nullptr;
|
||||
}
|
||||
|
||||
void QuantumCircuitReader::onGate(Location, const std::string value)
|
||||
void QuantumCircuitReader::onGate(Location, const String value)
|
||||
{
|
||||
MLOG_INFO("Got gate: " << value);
|
||||
|
||||
|
@ -128,9 +128,9 @@ void QuantumCircuitReader::onGate(Location, const std::string value)
|
|||
}
|
||||
}
|
||||
|
||||
std::string QuantumCircuitReader::checkForGate(const std::string& segment)
|
||||
String QuantumCircuitReader::checkForGate(const String& segment)
|
||||
{
|
||||
std::string working_string;
|
||||
String working_string;
|
||||
for (const auto c : segment)
|
||||
{
|
||||
if (c == '-')
|
||||
|
@ -142,7 +142,7 @@ std::string QuantumCircuitReader::checkForGate(const std::string& segment)
|
|||
return working_string;
|
||||
}
|
||||
|
||||
void QuantumCircuitReader::onKet(Location, const std::string value)
|
||||
void QuantumCircuitReader::onKet(Location, const String value)
|
||||
{
|
||||
MLOG_INFO("Got input state: " << value);
|
||||
Qubit qubit;
|
||||
|
@ -157,9 +157,9 @@ void QuantumCircuitReader::onKet(Location, const std::string value)
|
|||
mWorkingCircuit->addInputTerminal(std::move(input_terminal));
|
||||
}
|
||||
|
||||
std::size_t QuantumCircuitReader::getWireEnd(const std::string& segment)
|
||||
size_t QuantumCircuitReader::getWireEnd(const String& segment)
|
||||
{
|
||||
std::size_t idx = 0;
|
||||
size_t idx = 0;
|
||||
for (const auto c : segment)
|
||||
{
|
||||
if (c != '-')
|
||||
|
@ -171,9 +171,9 @@ std::size_t QuantumCircuitReader::getWireEnd(const std::string& segment)
|
|||
return idx;
|
||||
}
|
||||
|
||||
std::string QuantumCircuitReader::checkForKet(const std::string& segment)
|
||||
String QuantumCircuitReader::checkForKet(const String& segment)
|
||||
{
|
||||
std::string working_string;
|
||||
String working_string;
|
||||
bool found{ false };
|
||||
|
||||
for (const auto c : segment)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <filesystem>
|
||||
#include <string>
|
||||
#include "String.h"
|
||||
|
||||
using Path = std::filesystem::path;
|
||||
|
||||
|
@ -11,30 +11,30 @@ class QuantumCircuitElement;
|
|||
class QuantumCircuitReader
|
||||
{
|
||||
public:
|
||||
std::unique_ptr<QuantumCircuit> read(const Path& path);
|
||||
Ptr<QuantumCircuit> read(const Path& path);
|
||||
|
||||
std::unique_ptr<QuantumCircuit> read(const std::string& content);
|
||||
Ptr<QuantumCircuit> read(const String& content);
|
||||
|
||||
private:
|
||||
using Location = std::pair<std::size_t, std::size_t>;
|
||||
using Location = std::pair<size_t, size_t>;
|
||||
|
||||
void onLine(const std::string& line, std::size_t jdx);
|
||||
void onLine(const String& line, size_t jdx);
|
||||
|
||||
std::string checkForKet(const std::string& segment);
|
||||
String checkForKet(const String& segment);
|
||||
|
||||
std::string checkForGate(const std::string& segment);
|
||||
String checkForGate(const String& segment);
|
||||
|
||||
std::size_t getWireEnd(const std::string& segment);
|
||||
size_t getWireEnd(const String& segment);
|
||||
|
||||
void onGate(Location loc, const std::string value);
|
||||
void onGate(Location loc, const String value);
|
||||
|
||||
void onKet(Location loc, const std::string value);
|
||||
void onKet(Location loc, const String value);
|
||||
|
||||
void onLineEnd();
|
||||
|
||||
void onVertialQuantumWire(Location loc);
|
||||
|
||||
std::string mWorkingString;
|
||||
String mWorkingString;
|
||||
QuantumCircuitElement* mWorkingElement{ nullptr };
|
||||
QuantumCircuit* mWorkingCircuit{ nullptr };
|
||||
};
|
|
@ -1,13 +1,13 @@
|
|||
#include "QuantumState.h"
|
||||
|
||||
const std::vector<Qubit>& QuantumState::getData() const
|
||||
const Vector<Qubit>& QuantumState::getData() const
|
||||
{
|
||||
return mState;
|
||||
}
|
||||
|
||||
std::string QuantumState::toString() const
|
||||
String QuantumState::toString() const
|
||||
{
|
||||
std::string out;
|
||||
String out;
|
||||
for (const auto& qubit : mState)
|
||||
{
|
||||
out += "|" + qubit.toString() + "\n";
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
#include "Qubit.h"
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include "Vector.h"
|
||||
#include "String.h"
|
||||
|
||||
class QuantumState
|
||||
{
|
||||
|
@ -13,10 +13,10 @@ public:
|
|||
mState.push_back(data);
|
||||
}
|
||||
|
||||
const std::vector<Qubit>& getData() const;
|
||||
const Vector<Qubit>& getData() const;
|
||||
|
||||
std::string toString() const;
|
||||
String toString() const;
|
||||
|
||||
private:
|
||||
std::vector<Qubit> mState;
|
||||
Vector<Qubit> mState;
|
||||
};
|
||||
|
|
|
@ -29,9 +29,9 @@ bool Qubit::isIn1State() const
|
|||
return mBeta.getReal() == 1.0 && mAlpha.getMagnitude() == 0.0;
|
||||
}
|
||||
|
||||
std::string Qubit::toString(std::size_t precision) const
|
||||
String Qubit::toString(size_t precision) const
|
||||
{
|
||||
std::stringstream sstr;
|
||||
Stringstream sstr;
|
||||
sstr.precision(precision);
|
||||
sstr << "alpha " << mAlpha.getReal() << " " << mAlpha.getImaginary() << "i , beta " << mBeta.getReal() << " " << mBeta.getImaginary() << "i";
|
||||
return sstr.str();
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include "ComplexNumber.h"
|
||||
|
||||
#include <string>
|
||||
#include "String.h"
|
||||
|
||||
class Qubit
|
||||
{
|
||||
|
@ -17,7 +17,7 @@ public:
|
|||
|
||||
bool isIn1State() const;
|
||||
|
||||
std::string toString(std::size_t precision=3) const;
|
||||
String toString(size_t precision=3) const;
|
||||
private:
|
||||
ComplexNumber mAlpha;
|
||||
ComplexNumber mBeta;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include "Pointer.h"
|
||||
|
||||
class QuantumCircuitElement
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "QuantumGate.h"
|
||||
|
||||
NInMOutQuantumGate::NInMOutQuantumGate(std::size_t numIn, std::size_t numOut, std::vector<AbstractQuantumWire*> inputs, std::vector<AbstractQuantumWire*> outputs)
|
||||
NInMOutQuantumGate::NInMOutQuantumGate(size_t numIn, size_t numOut, Vector<AbstractQuantumWire*> inputs, Vector<AbstractQuantumWire*> outputs)
|
||||
: QuantumGate(),
|
||||
mNumIn(numIn),
|
||||
mNumOut(numOut)
|
||||
|
@ -11,7 +11,7 @@ NInMOutQuantumGate::NInMOutQuantumGate(std::size_t numIn, std::size_t numOut, st
|
|||
}
|
||||
else
|
||||
{
|
||||
mInputs = std::vector<AbstractQuantumWire*>(numIn, nullptr);
|
||||
mInputs = Vector<AbstractQuantumWire*>(numIn, nullptr);
|
||||
}
|
||||
|
||||
if (outputs.size() == mNumOut)
|
||||
|
@ -20,21 +20,21 @@ NInMOutQuantumGate::NInMOutQuantumGate(std::size_t numIn, std::size_t numOut, st
|
|||
}
|
||||
else
|
||||
{
|
||||
mOutputs = std::vector<AbstractQuantumWire*>(numOut, nullptr);
|
||||
mOutputs = Vector<AbstractQuantumWire*>(numOut, nullptr);
|
||||
}
|
||||
}
|
||||
|
||||
std::size_t NInMOutQuantumGate::getNumInputs() const
|
||||
size_t NInMOutQuantumGate::getNumInputs() const
|
||||
{
|
||||
return mNumIn;
|
||||
}
|
||||
|
||||
std::size_t NInMOutQuantumGate::getNumOutputs() const
|
||||
size_t NInMOutQuantumGate::getNumOutputs() const
|
||||
{
|
||||
return mNumOut;
|
||||
}
|
||||
|
||||
AbstractQuantumWire* NInMOutQuantumGate::getInput(std::size_t idx) const
|
||||
AbstractQuantumWire* NInMOutQuantumGate::getInput(size_t idx) const
|
||||
{
|
||||
if (idx < mNumIn)
|
||||
{
|
||||
|
@ -46,7 +46,7 @@ AbstractQuantumWire* NInMOutQuantumGate::getInput(std::size_t idx) const
|
|||
}
|
||||
}
|
||||
|
||||
AbstractQuantumWire* NInMOutQuantumGate::getOutput(std::size_t idx) const
|
||||
AbstractQuantumWire* NInMOutQuantumGate::getOutput(size_t idx) const
|
||||
{
|
||||
if (idx < mNumOut)
|
||||
{
|
||||
|
@ -58,7 +58,7 @@ AbstractQuantumWire* NInMOutQuantumGate::getOutput(std::size_t idx) const
|
|||
}
|
||||
}
|
||||
|
||||
void NInMOutQuantumGate::setAtInput(std::size_t idx, AbstractQuantumWire* value)
|
||||
void NInMOutQuantumGate::setAtInput(size_t idx, AbstractQuantumWire* value)
|
||||
{
|
||||
if (idx < mInputs.size())
|
||||
{
|
||||
|
@ -66,7 +66,7 @@ void NInMOutQuantumGate::setAtInput(std::size_t idx, AbstractQuantumWire* value)
|
|||
}
|
||||
}
|
||||
|
||||
void NInMOutQuantumGate::setAtOutput(std::size_t idx, AbstractQuantumWire* value)
|
||||
void NInMOutQuantumGate::setAtOutput(size_t idx, AbstractQuantumWire* value)
|
||||
{
|
||||
if (idx < mOutputs.size())
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
#include "QuantumWire.h"
|
||||
|
||||
#include <vector>
|
||||
#include "Vector.h"
|
||||
|
||||
class QuantumGate : public QuantumCircuitElement
|
||||
{
|
||||
|
@ -20,17 +20,17 @@ public:
|
|||
};
|
||||
virtual ~QuantumGate() = default;
|
||||
|
||||
virtual std::size_t getNumInputs() const = 0;
|
||||
virtual size_t getNumInputs() const = 0;
|
||||
|
||||
virtual std::size_t getNumOutputs() const = 0;
|
||||
virtual size_t getNumOutputs() const = 0;
|
||||
|
||||
virtual AbstractQuantumWire* getInput(std::size_t idx) const = 0;
|
||||
virtual AbstractQuantumWire* getInput(size_t idx) const = 0;
|
||||
|
||||
virtual AbstractQuantumWire* getOutput(std::size_t idx) const = 0;
|
||||
virtual AbstractQuantumWire* getOutput(size_t idx) const = 0;
|
||||
|
||||
virtual void setAtInput(std::size_t idx, AbstractQuantumWire* value) = 0;
|
||||
virtual void setAtInput(size_t idx, AbstractQuantumWire* value) = 0;
|
||||
|
||||
virtual void setAtOutput(std::size_t idx, AbstractQuantumWire* value) = 0;
|
||||
virtual void setAtOutput(size_t idx, AbstractQuantumWire* value) = 0;
|
||||
|
||||
virtual GateType getGateType() const = 0;
|
||||
|
||||
|
@ -39,27 +39,27 @@ public:
|
|||
return Type::GATE;
|
||||
}
|
||||
};
|
||||
using QuantumGatePtr = std::unique_ptr<QuantumGate>;
|
||||
using QuantumGatePtr = Ptr<QuantumGate>;
|
||||
|
||||
|
||||
class NInMOutQuantumGate : public QuantumGate
|
||||
{
|
||||
public:
|
||||
NInMOutQuantumGate(std::size_t numIn, std::size_t numOut, std::vector<AbstractQuantumWire*> inputs = {}, std::vector<AbstractQuantumWire*> outputs = {});
|
||||
NInMOutQuantumGate(size_t numIn, size_t numOut, Vector<AbstractQuantumWire*> inputs = {}, Vector<AbstractQuantumWire*> outputs = {});
|
||||
|
||||
virtual ~NInMOutQuantumGate() = default;
|
||||
|
||||
std::size_t getNumInputs() const override;
|
||||
size_t getNumInputs() const override;
|
||||
|
||||
std::size_t getNumOutputs() const override;
|
||||
size_t getNumOutputs() const override;
|
||||
|
||||
AbstractQuantumWire* getInput(std::size_t idx) const override;
|
||||
AbstractQuantumWire* getInput(size_t idx) const override;
|
||||
|
||||
AbstractQuantumWire* getOutput(std::size_t idx) const override;
|
||||
AbstractQuantumWire* getOutput(size_t idx) const override;
|
||||
|
||||
void setAtInput(std::size_t idx, AbstractQuantumWire* value) override;
|
||||
void setAtInput(size_t idx, AbstractQuantumWire* value) override;
|
||||
|
||||
void setAtOutput(std::size_t idx, AbstractQuantumWire* value) override;
|
||||
void setAtOutput(size_t idx, AbstractQuantumWire* value) override;
|
||||
|
||||
bool isFullyConnected() const override
|
||||
{
|
||||
|
@ -82,11 +82,11 @@ public:
|
|||
}
|
||||
|
||||
private:
|
||||
std::size_t mNumIn{ 1 };
|
||||
std::size_t mNumOut{ 1 };
|
||||
size_t mNumIn{ 1 };
|
||||
size_t mNumOut{ 1 };
|
||||
|
||||
std::vector<AbstractQuantumWire*> mInputs;
|
||||
std::vector<AbstractQuantumWire*> mOutputs;
|
||||
Vector<AbstractQuantumWire*> mInputs;
|
||||
Vector<AbstractQuantumWire*> mOutputs;
|
||||
};
|
||||
|
||||
class TwoInOneOutQuantumGate : public NInMOutQuantumGate
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "QuantumTerminal.h"
|
||||
|
||||
QuantumTerminal::QuantumTerminal(TerminalType type, const std::string& label)
|
||||
QuantumTerminal::QuantumTerminal(TerminalType type, const String& label)
|
||||
: mLabel(label),
|
||||
mType(type)
|
||||
{
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
#include "QuantumCircuitElement.h"
|
||||
#include "Qubit.h"
|
||||
|
||||
#include <string>
|
||||
#include <memory>
|
||||
#include "String.h"
|
||||
#include "Pointer.h"
|
||||
|
||||
class QuantumWire;
|
||||
|
||||
|
@ -17,7 +17,7 @@ public:
|
|||
OUTPUT
|
||||
};
|
||||
|
||||
QuantumTerminal(TerminalType type, const std::string& label = {});
|
||||
QuantumTerminal(TerminalType type, const String& label = {});
|
||||
|
||||
QuantumWire* getConnection() const;
|
||||
|
||||
|
@ -40,9 +40,9 @@ public:
|
|||
void setValue(const Qubit& value);
|
||||
|
||||
private:
|
||||
std::string mLabel;
|
||||
String mLabel;
|
||||
TerminalType mType;
|
||||
Qubit mValue;
|
||||
QuantumWire* mConnection{ nullptr };
|
||||
};
|
||||
using QuantumTerminalPtr = std::unique_ptr<QuantumTerminal>;
|
||||
using QuantumTerminalPtr = Ptr<QuantumTerminal>;
|
||||
|
|
|
@ -38,7 +38,7 @@ public:
|
|||
Type getType() const override;
|
||||
WireType getWireType() const override;
|
||||
};
|
||||
using QuantumWirePtr = std::unique_ptr<QuantumWire>;
|
||||
using QuantumWirePtr = Ptr<QuantumWire>;
|
||||
|
||||
class ClassicalWire : public AbstractQuantumWire
|
||||
{
|
||||
|
|
|
@ -41,7 +41,7 @@ void BlochSphereNode::update(SceneInfo*)
|
|||
mOuterCircle = std::make_unique<CircleNode>(loc, mSize/2.0);
|
||||
|
||||
const auto end_point_x = Point2(loc.getX() + 1.2 * mSize / 2.0, loc.getY());
|
||||
const std::vector<Point2> points{end_point_x };
|
||||
const Vector<Point2> points{end_point_x };
|
||||
mXAxis = std::make_unique<LineNode>(loc, points);
|
||||
|
||||
mCentreCircle = std::make_unique<CircleNode>(loc, mSize / 50.0);
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include "AbstractVisualNode.h"
|
||||
|
||||
#include <memory>
|
||||
#include "Pointer.h"
|
||||
|
||||
class BlochSphere;
|
||||
class CircleNode;
|
||||
|
@ -23,12 +23,12 @@ private:
|
|||
bool mContentDirty{ true };
|
||||
BlochSphere* mContent{ nullptr };
|
||||
|
||||
std::unique_ptr<CircleNode> mOuterCircle;
|
||||
std::unique_ptr<CircleNode> mInnerCircle;
|
||||
std::unique_ptr<CircleNode> mCentreCircle;
|
||||
std::unique_ptr<CircleNode> mStateMarkerCircle;
|
||||
std::unique_ptr<LineNode> mXAxis;
|
||||
std::unique_ptr<LineNode> mYAxis;
|
||||
std::unique_ptr<LineNode> mZAxis;
|
||||
std::unique_ptr<LineNode> mStateVector;
|
||||
Ptr<CircleNode> mOuterCircle;
|
||||
Ptr<CircleNode> mInnerCircle;
|
||||
Ptr<CircleNode> mCentreCircle;
|
||||
Ptr<CircleNode> mStateMarkerCircle;
|
||||
Ptr<LineNode> mXAxis;
|
||||
Ptr<LineNode> mYAxis;
|
||||
Ptr<LineNode> mZAxis;
|
||||
Ptr<LineNode> mStateVector;
|
||||
};
|
||||
|
|
|
@ -45,12 +45,12 @@ void QuantumCircuitNode::buildWireConnections()
|
|||
|
||||
for (auto gate : mContent->getLogicGates())
|
||||
{
|
||||
for (std::size_t idx = 0; idx < gate->getNumInputs(); idx++)
|
||||
for (size_t idx = 0; idx < gate->getNumInputs(); idx++)
|
||||
{
|
||||
mWireInputConnections[gate->getInput(idx)] = gate;
|
||||
}
|
||||
|
||||
for (std::size_t idx = 0; idx < gate->getNumOutputs(); idx++)
|
||||
for (size_t idx = 0; idx < gate->getNumOutputs(); idx++)
|
||||
{
|
||||
mWireOutputConnections[gate->getOutput(idx)] = gate;
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include "AbstractVisualNode.h"
|
||||
|
||||
#include <unordered_map>
|
||||
#include Map.h
|
||||
|
||||
class QuantumCircuit;
|
||||
class QuantumCircuitElement;
|
||||
|
@ -29,13 +29,13 @@ private:
|
|||
bool mContentDirty{ true };
|
||||
QuantumCircuit* mContent{ nullptr };
|
||||
|
||||
std::vector<std::unique_ptr<QuantumTerminalNode> > mInputTerminalNodes;
|
||||
std::vector<std::unique_ptr<QuantumTerminalNode> > mOutputTerminalNodes;
|
||||
std::vector<std::unique_ptr<QuantumGateNode> > mGateNodes;
|
||||
std::vector<std::unique_ptr<QuantumWireNode> > mWireNodes;
|
||||
Vector<Ptr<QuantumTerminalNode> > mInputTerminalNodes;
|
||||
Vector<Ptr<QuantumTerminalNode> > mOutputTerminalNodes;
|
||||
Vector<Ptr<QuantumGateNode> > mGateNodes;
|
||||
Vector<Ptr<QuantumWireNode> > mWireNodes;
|
||||
|
||||
std::unordered_map<AbstractQuantumWire*, QuantumCircuitElement*> mWireInputConnections;
|
||||
std::unordered_map<AbstractQuantumWire*, QuantumCircuitElement*> mWireOutputConnections;
|
||||
Map<AbstractQuantumWire*, QuantumCircuitElement*> mWireInputConnections;
|
||||
Map<AbstractQuantumWire*, QuantumCircuitElement*> mWireOutputConnections;
|
||||
|
||||
std::unordered_map<QuantumCircuitElement*, QuantumCircuitElementNode*> mNodesForContent;
|
||||
Map<QuantumCircuitElement*, QuantumCircuitElementNode*> mNodesForContent;
|
||||
};
|
|
@ -44,7 +44,7 @@ void QuantumGateNode::createOrUpdateGeometry(SceneInfo*)
|
|||
{
|
||||
mLabel = std::make_unique<EquationNode>(Point(mBodyWidth /3.0, mBodyHeight / 3.0));
|
||||
|
||||
std::string label_content;
|
||||
String label_content;
|
||||
if (mContent->getGateType() == QuantumGate::GateType::X)
|
||||
{
|
||||
label_content = "X";
|
||||
|
@ -75,9 +75,9 @@ void QuantumGateNode::createOrUpdateGeometry(SceneInfo*)
|
|||
Point2 QuantumGateNode::getConnectionLocation(AbstractQuantumWire* wire) const
|
||||
{
|
||||
bool is_input{ false };
|
||||
//std::size_t connection_id{ 0 };
|
||||
//size_t connection_id{ 0 };
|
||||
|
||||
for (std::size_t idx = 0; idx < mContent->getNumInputs(); idx++)
|
||||
for (size_t idx = 0; idx < mContent->getNumInputs(); idx++)
|
||||
{
|
||||
if (mContent->getInput(idx) == wire)
|
||||
{
|
||||
|
@ -87,7 +87,7 @@ Point2 QuantumGateNode::getConnectionLocation(AbstractQuantumWire* wire) const
|
|||
}
|
||||
}
|
||||
|
||||
for (std::size_t idx = 0; idx < mContent->getNumOutputs(); idx++)
|
||||
for (size_t idx = 0; idx < mContent->getNumOutputs(); idx++)
|
||||
{
|
||||
if (mContent->getOutput(idx) == wire)
|
||||
{
|
||||
|
|
|
@ -25,10 +25,10 @@ private:
|
|||
QuantumGate* mContent{ nullptr };
|
||||
bool mContentDirty{ true };
|
||||
|
||||
std::unique_ptr<RectangleNode> mBody;
|
||||
Ptr<RectangleNode> mBody;
|
||||
|
||||
double mBodyWidth = 30;
|
||||
double mBodyHeight = 24;
|
||||
std::unique_ptr<LatexMathExpression> mLabelExpression;
|
||||
std::unique_ptr<EquationNode> mLabel;
|
||||
Ptr<LatexMathExpression> mLabelExpression;
|
||||
Ptr<EquationNode> mLabel;
|
||||
};
|
|
@ -30,7 +30,7 @@ void QuantumTerminalNode::createOrUpdateGeometry(SceneInfo*)
|
|||
if (!mLabel && mContent->getTerminalType() != QuantumTerminal::TerminalType::OUTPUT)
|
||||
{
|
||||
const auto value = mContent->getValue();
|
||||
std::string label;
|
||||
String label;
|
||||
if (value.isIn0State())
|
||||
{
|
||||
label = "\\ket{0}";
|
||||
|
|
|
@ -25,6 +25,6 @@ private:
|
|||
double mWidth = 20.0;
|
||||
double mHeight = 10.0;
|
||||
|
||||
std::unique_ptr<LatexMathExpression> mLabelExpression;
|
||||
std::unique_ptr<EquationNode> mLabel;
|
||||
Ptr<LatexMathExpression> mLabelExpression;
|
||||
Ptr<EquationNode> mLabel;
|
||||
};
|
|
@ -54,7 +54,7 @@ void QuantumWireNode::createOrUpdateGeometry(SceneInfo*)
|
|||
auto loc = mOutputLocation;
|
||||
loc.moveBy(-mInputLocation.getX(), -mInputLocation.getY(), -mInputLocation.getZ());
|
||||
|
||||
std::vector<Point2> points;
|
||||
Vector<Point2> points;
|
||||
|
||||
if (loc.getY() == 0.0)
|
||||
{
|
||||
|
|
|
@ -29,5 +29,5 @@ private:
|
|||
Point2 mInputLocation;
|
||||
Point2 mOutputLocation;
|
||||
|
||||
std::unique_ptr<LineNode> mLine;
|
||||
Ptr<LineNode> mLine;
|
||||
};
|
|
@ -1,7 +0,0 @@
|
|||
add_subdirectory(base)
|
||||
add_subdirectory(console)
|
||||
add_subdirectory(media)
|
||||
add_subdirectory(publishing)
|
||||
add_subdirectory(rendering)
|
||||
add_subdirectory(ui)
|
||||
add_subdirectory(web)
|
|
@ -1,6 +0,0 @@
|
|||
add_subdirectory(compiler)
|
||||
add_subdirectory(compression)
|
||||
add_subdirectory(core)
|
||||
add_subdirectory(database)
|
||||
add_subdirectory(geometry)
|
||||
add_subdirectory(network)
|
|
@ -1,28 +0,0 @@
|
|||
set(MODULE_NAME compiler)
|
||||
|
||||
list(APPEND HEADERS
|
||||
Lexer.h
|
||||
template_engine/TemplatingEngine.h
|
||||
template_engine/TemplateFile.h
|
||||
template_engine/TemplateNode.h
|
||||
template_engine/TemplateElements.h
|
||||
)
|
||||
|
||||
list(APPEND SOURCES
|
||||
Lexer.cpp
|
||||
template_engine/TemplatingEngine.cpp
|
||||
template_engine/TemplateFile.cpp
|
||||
template_engine/TemplateNode.cpp
|
||||
template_engine/TemplateElements.cpp
|
||||
)
|
||||
|
||||
add_library(${MODULE_NAME} SHARED ${HEADERS} ${SOURCES})
|
||||
|
||||
target_include_directories(${MODULE_NAME} PUBLIC
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/template_engine
|
||||
)
|
||||
target_link_libraries( ${MODULE_NAME} PUBLIC core)
|
||||
|
||||
set_target_properties( ${MODULE_NAME} PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON )
|
||||
set_property(TARGET ${MODULE_NAME} PROPERTY FOLDER src/base)
|
78
src/base/compiler/KScope.cpp
Normal file
78
src/base/compiler/KScope.cpp
Normal file
|
@ -0,0 +1,78 @@
|
|||
#include "KScope.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
void KScopeLexer::run(const FileSystemPath& path)
|
||||
{
|
||||
printf("Before read");
|
||||
File f(path);
|
||||
|
||||
const auto content = f<.readText();
|
||||
printf("Content is: %s\n", content);
|
||||
fflush(stdout);
|
||||
|
||||
Vector<Token> tokens;
|
||||
for(const auto c : content.data())
|
||||
{
|
||||
printf("Char is: %c\n", c);
|
||||
if (CharUtils::is_space(c))
|
||||
{
|
||||
if (m_working_token.is_identifier() || m_working_token.is_number())
|
||||
{
|
||||
on_token_finished(tokens);
|
||||
}
|
||||
}
|
||||
else if (CharUtils::is_alpha(c))
|
||||
{
|
||||
if (m_working_token.is_number())
|
||||
{
|
||||
on_token_finished(tokens);
|
||||
m_working_token = Token();
|
||||
m_working_token.set_is_identifier();
|
||||
}
|
||||
else if (!m_working_token.is_identifier())
|
||||
{
|
||||
m_working_token = Token();
|
||||
m_working_token.set_is_identifier();
|
||||
}
|
||||
m_working_token.m_value += c;
|
||||
}
|
||||
else if (CharUtils::is_digit(c))
|
||||
{
|
||||
if (m_working_token.is_number() || m_working_token.is_identifier())
|
||||
{
|
||||
m_working_token.m_value += c;
|
||||
}
|
||||
else
|
||||
{
|
||||
m_working_token = Token();
|
||||
m_working_token.set_is_number();
|
||||
m_working_token.m_value += c;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (m_working_token.is_identifier() || m_working_token.is_number())
|
||||
{
|
||||
on_token_finished(tokens);
|
||||
}
|
||||
|
||||
m_working_token.set_is_literal();
|
||||
m_working_token.m_value += c;
|
||||
on_token_finished(tokens);
|
||||
}
|
||||
}
|
||||
on_token_finished(tokens);
|
||||
}
|
||||
|
||||
void KScopeLexer::on_token_finished(Vector<Token>& tokens)
|
||||
{
|
||||
if (m_working_token.m_type == TokenT::NONE)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
m_working_token.on_finished();
|
||||
tokens.push_back(m_working_token);
|
||||
m_working_token = Token();
|
||||
}
|
86
src/base/compiler/KScope.h
Normal file
86
src/base/compiler/KScope.h
Normal file
|
@ -0,0 +1,86 @@
|
|||
#pragma once
|
||||
|
||||
#include "String.h"
|
||||
#include "File.h"
|
||||
#include "Vector.h"
|
||||
#include "CharUtils.h"
|
||||
|
||||
class KScopeLexer
|
||||
{
|
||||
public:
|
||||
enum class TokenT
|
||||
{
|
||||
NONE,
|
||||
DEF, // LANG COMMANDS
|
||||
EXTERN,
|
||||
IDENTIFIER ,// GENERAL
|
||||
LITERAL,
|
||||
NUMBER
|
||||
};
|
||||
|
||||
struct Token
|
||||
{
|
||||
bool is_identifier() const
|
||||
{
|
||||
return m_type == TokenT::IDENTIFIER;
|
||||
}
|
||||
|
||||
bool is_number() const
|
||||
{
|
||||
return m_type == TokenT::NUMBER;
|
||||
}
|
||||
|
||||
void set_is_identifier()
|
||||
{
|
||||
m_type = TokenT::IDENTIFIER;
|
||||
}
|
||||
|
||||
void set_is_number()
|
||||
{
|
||||
m_type = TokenT::NUMBER;
|
||||
}
|
||||
|
||||
void set_is_literal()
|
||||
{
|
||||
m_type = TokenT::LITERAL;
|
||||
}
|
||||
|
||||
void on_identifier_finished()
|
||||
{
|
||||
if (m_value == "def")
|
||||
{
|
||||
m_type = TokenT::DEF;
|
||||
}
|
||||
else if (m_value == "extern")
|
||||
{
|
||||
m_type = TokenT::EXTERN;
|
||||
}
|
||||
}
|
||||
|
||||
void on_number_finished()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void on_finished()
|
||||
{
|
||||
if (is_identifier())
|
||||
{
|
||||
on_identifier_finished();
|
||||
}
|
||||
else if(is_number())
|
||||
{
|
||||
on_number_finished();
|
||||
}
|
||||
}
|
||||
|
||||
TokenT m_type{TokenT::NONE};
|
||||
String m_value;
|
||||
};
|
||||
|
||||
void run(const FileSystemPath& path);
|
||||
|
||||
void on_token_finished(Vector<Token>& tokens);
|
||||
|
||||
Token m_working_token;
|
||||
};
|
|
@ -1,6 +1,6 @@
|
|||
#include "Lexer.h"
|
||||
|
||||
bool Lexer::matchPattern(const std::string& pattern, const std::string& checkString, char delimiter, std::vector<std::string>& hitSequence)
|
||||
bool Lexer::matchPattern(const String& pattern, const String& checkString, char delimiter, Vector<String>& hitSequence)
|
||||
{
|
||||
if (checkString.empty())
|
||||
{
|
||||
|
@ -16,8 +16,8 @@ bool Lexer::matchPattern(const std::string& pattern, const std::string& checkStr
|
|||
unsigned check_idx = 0;
|
||||
unsigned pattern_idx = 0;
|
||||
|
||||
std::vector<std::string> hits;
|
||||
std::string working_hit;
|
||||
Vector<String> hits;
|
||||
String working_hit;
|
||||
while(check_idx < checkString.size())
|
||||
{
|
||||
if (pattern_idx == pattern.size())
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include "String.h"
|
||||
#include "Vector.h"
|
||||
|
||||
class Lexer
|
||||
{
|
||||
public:
|
||||
// e.g. Pattern [@](@) returns <source, tag> for input: [source](tag) and delimiter @
|
||||
static bool matchPattern(const std::string& pattern, const std::string& checkString, char delimiter, std::vector<std::string>& hitSequence);
|
||||
static bool matchPattern(const String& pattern, const String& checkString, char delimiter, Vector<String>& hitSequence);
|
||||
};
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue