-
-
Notifications
You must be signed in to change notification settings - Fork 82
dtl::shape::DobutsuShogi (形状クラス)
Kasugaccho edited this page Aug 17, 2019
·
2 revisions
namespace dtl::shape {
template <typename T>
class DobutsuShogi;
}
※ T
は1bit以上の型
DobutsuShogi
とは "Matrixの描画範囲に どうぶつしょうぎ の駒を初期位置に設置する" 機能を持つクラスである。
描画範囲の全てを必ず塗りつぶすとは限らない (Matrixの初期化が必要) 。
機能名 | 対応 |
---|---|
非長方形Matrix | 可能✅ |
#include <DTL.hpp>
#include <cstdint>
#include <array>
int main() {
using shape_t = std::uint_fast8_t;
std::array<std::array<shape_t, 3>, 4> matrix{ {} };
dtl::shape::DobutsuShogi<shape_t>(
1, 2, 3, 4, 5, 6, 7, 8, 9, 10).draw(matrix);
dtl::console::OutputString<shape_t>(
"* ", "c< ", "c> ", "h< ", "h> ", "e< ", "e> ", "g< ", "g> ", "l< ", "l> ").draw(matrix);
return 0;
}
g< l< e<
* c< *
* c> *
e> l> g>
Copyright (c) 2018-2021 As Project.
Distributed under the Boost Software License, Version 1.0.(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)