From 5d83ac6ad34989b2ff6cc2c20eee57f6f98c93cb Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Fri, 21 Aug 2020 12:45:54 +0200 Subject: [PATCH] wip: drop the vendors dir from simulator/interface Signed-off-by: Gergely Nagy --- .../interface/vendors/keyboardio/model01.cpp | 53 ------------------- .../interface/vendors/keyboardio/model01.h | 41 -------------- 2 files changed, 94 deletions(-) delete mode 100644 src/kaleidoscope/simulator/interface/vendors/keyboardio/model01.cpp delete mode 100644 src/kaleidoscope/simulator/interface/vendors/keyboardio/model01.h diff --git a/src/kaleidoscope/simulator/interface/vendors/keyboardio/model01.cpp b/src/kaleidoscope/simulator/interface/vendors/keyboardio/model01.cpp deleted file mode 100644 index 4c831413..00000000 --- a/src/kaleidoscope/simulator/interface/vendors/keyboardio/model01.cpp +++ /dev/null @@ -1,53 +0,0 @@ -/* -*- mode: c++ -*- - * kaleidoscope::simulator - Testing API for Kaleidoscope - * Copyright (C) 2019 noseglasses (shinynoseglasses@gmail.com) - * Copyright (C) 2020 Keyboard.io, Inc - * - * 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, version 3. - * - * 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. - * - * You should have received a copy of the GNU General Public License along with - * this program. If not, see . - */ - -#ifdef KALEIDOSCOPE_VIRTUAL_BUILD - -#include "kaleidoscope/simulator/interface/vendors/keyboardio/model01.h" - -namespace kaleidoscope { -namespace simulator { -namespace interface { -namespace keyboardio { -namespace model01 { -const char *ascii_keyboard = - "┏━━━━┳━━━━┳━━━━┳━━━━┳━━━━┳━━━━┳━━━━┓ ┏━━━━┳━━━━┳━━━━┳━━━━┳━━━━┳━━━━┳━━━━┓\n" - "┃{00}┃{01}┃{02}┃{03}┃{04}┃{05}┃{06}┃ ┃{09}┃{10}┃{11}┃{12}┃{13}┃{14}┃{15}┃\n" - "┣━━━━╋━━━━╋━━━━╋━━━━╋━━━━╋━━━━┫ ┃ ┃ ┣━━━━╋━━━━╋━━━━╋━━━━╋━━━━╋━━━━┫\n" - "┃{16}┃{17}┃{18}┃{19}┃{20}┃{21}┣━━━━┫ ┣━━━━┫{26}┃{27}┃{28}┃{29}┃{30}┃{31}┃\n" - "┣━━━━╋━━━━╋━━━━╋━━━━╋━━━━╋━━━━┫{22}┃ ┃{25}┣━━━━╋━━━━╋━━━━╋━━━━╋━━━━╋━━━━┫\n" - "┃{32}┃{33}┃{34}┃{35}┃{36}┃{37}┃ ┃ ┃ ┃{42}┃{43}┃{44}┃{45}┃{46}┃{47}┃\n" - "┣━━━━╋━━━━╋━━━━╋━━━━╋━━━━╋━━━━╋━━━━┫ ┣━━━━╋━━━━╋━━━━╋━━━━╋━━━━╋━━━━╋━━━━┫\n" - "┃{48}┃{49}┃{50}┃{51}┃{52}┃{53}┃{38}┃ ┃{41}┃{58}┃{59}┃{60}┃{61}┃{62}┃{63}┃\n" - "┗━━━━┻━━━━┻━━━━┻━━━━┻━━━━┻━━━━┻━━━━┛ ┗━━━━┻━━━━┻━━━━┻━━━━┻━━━━┻━━━━┻━━━━┛\n" - " ┏━━━━┓ ┏━━━━┓ \n" - " ┃{07}┣━━━━┓ ┏━━━━┫{08}┃ \n" - " ┗━━━━┫{23}┣━━━━┓ ┏━━━━┫{24}┣━━━━┛ \n" - " ┗━━━━┫{39}┣━━━━┓ ┏━━━━┫{40}┣━━━━┛ \n" - " ┗━━━━┫{55}┃ ┃{56}┣━━━━┛ \n" - " ┗━━━━┛ ┗━━━━┛ \n" - " ┏━━━━━━┓ ┏━━━━━━┓ \n" - " ┃ {54} ┃ ┃ {57} ┃ \n" - " ┗━━━━━━┛ ┗━━━━━━┛ \n"; -} // namespace model01 -} // namespace keyboardio -} // namespace interface -} // namespace simulator -} // namespace kaleidoscope - -#endif // KALEIDOSCOPE_VIRTUAL_BUILD diff --git a/src/kaleidoscope/simulator/interface/vendors/keyboardio/model01.h b/src/kaleidoscope/simulator/interface/vendors/keyboardio/model01.h deleted file mode 100644 index 258fbc6f..00000000 --- a/src/kaleidoscope/simulator/interface/vendors/keyboardio/model01.h +++ /dev/null @@ -1,41 +0,0 @@ -/* -*- mode: c++ -*- - * kaleidoscope::simulator - Testing API for Kaleidoscope - * Copyright (C) 2019 noseglasses (shinynoseglasses@gmail.com) - * Copyright (C) 2020 Keyboard.io, Inc - * - * 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, version 3. - * - * 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. - * - * You should have received a copy of the GNU General Public License along with - * this program. If not, see . - */ - -#pragma once - -#ifdef KALEIDOSCOPE_VIRTUAL_BUILD - -namespace kaleidoscope { -namespace simulator { -namespace interface { -namespace keyboardio { -namespace model01 { - -/// @brief A formatted string that represents the keyboard layout of -/// the Keyboardio Model01. -/// @details Use this string with the renderKeyboard(...) function. -/// -extern const char *ascii_keyboard; - -} // namespace model01 -} // namespace keyboardio -} // namespace interface -} // namespace simulator -} // namespace kaleidoscope - -#endif // KALEIDOSCOPE_VIRTUAL_BUILD