/* * Verrückte Turing-Maschinen — A turing complete game * Copyright (C) 2016-2018 kcf * * 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. * * 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 . */ module mod_vtm { export module mod_manifestation { export module mod_svg { export module mod_actuator { /** * @author kcf */ export type signature_actuator = { view : (actuator : mod_vtm.mod_model.mod_actuator.type_actuator)=>Array; } ; /** * @author kcf */ export var trait_actuator : lib_trait.type_trait = lib_trait.create(); /** * @author kcf */ export type type_actuator = { model : mod_vtm.mod_model.mod_actuator.type_actuator; spot : mod_vtm.mod_model.mod_spot.type_spot; } ; /** * @author kcf */ function create ( model : mod_vtm.mod_model.mod_actuator.type_actuator, spot : mod_vtm.mod_model.mod_spot.type_spot ) : type_actuator { return { "model": model, "spot": spot }; } /** * @author kcf */ export function create_extended ( model : mod_vtm.mod_model.mod_actuator.type_actuator, spot : mod_vtm.mod_model.mod_spot.type_spot ) : type_manifestation { return { "kind": "svg_actuator", "data": create(model, spot), }; } /** * @author kcf */ function view(actuator_ : type_actuator) : lib_xml.type_node { let actuator : mod_vtm.mod_model.mod_actuator.type_actuator = actuator_.model; let node_rahmen = function () : lib_xml.type_node { return ( lib_svg.path ( lib_list.sequence(6).map(i => lib_vector.polar(((i+0.5)/6) * (2*Math.PI), 0.5)), true, { "class": "rahmen" } ) ); } ; let position : mod_position.type_position = mod_position.from_spot(actuator_.spot); let node_tile : lib_xml.type_node = ( lib_xml.create_normal ( "g", { "class": "tile", "rel": mod_vtm.mod_model.mod_spot.hash(actuator_.spot), "transform": lib_svg.translation(position.x, position.y), }, ( [node_rahmen()] .concat(lib_trait.deploy(trait_actuator, actuator.kind)["view"](actuator)) ) ) ); return node_tile; } /** * @author kcf */ function bind(actuator : type_actuator) : void { } /** * @author kcf */ lib_trait.attend> ( trait_manifestation, "svg_actuator", { "view": (manifestation) => view(manifestation.data), "bind": (manifestation) => bind(manifestation.data), } ) ; } } } }