vtm/source/model/actuators/acceptor.ts
Christian Fraß a47a8e30e3 [mod] save
2020-05-03 12:25:05 +02:00

166 lines
3.5 KiB
TypeScript

/*
* Verrückte Turing-Maschinen — A turing complete game
* Copyright (C) 2016-2018 kcf <vidofnir@folksprak.org>
*
* 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 <https://www.gnu.org/licenses/>.
*/
module mod_vtm
{
export module mod_model
{
export module mod_actuator
{
export module mod_acceptor
{
/**
* @author kcf <vidofnir@folksprak.org>
*/
const kind : string = "acceptor";
/**
* @author kcf <vidofnir@folksprak.org>
*/
export type type_acceptor =
{
}
;
/**
* @author kcf <vidofnir@folksprak.org>
*/
function create
(
)
: type_acceptor
{
return {
};
}
/**
* @author kcf <vidofnir@folksprak.org>
*/
export function create_extended
(
)
: mod_actuator.type_actuator
{
return lib_call.wrap(kind, create());
}
/**
* @author kcf <vidofnir@folksprak.org>
*/
function example
(
)
: type_acceptor
{
return create();
}
/**
* @author kcf <vidofnir@folksprak.org>
*/
function rotate
(
acceptor : type_acceptor,
increment ?: int
)
: void
{
}
/**
* @author kcf <vidofnir@folksprak.org>
*/
function use
(
acceptor : type_acceptor,
token : mod_token.type_token
)
: void
{
mod_token.accept(token);
}
/**
* @author kcf <vidofnir@folksprak.org>
*/
function export_
(
acceptor : type_acceptor
)
: any
{
return {
};
}
/**
* @author kcf <vidofnir@folksprak.org>
*/
function import_
(
raw : any
)
: type_acceptor
{
return (
create
(
)
);
}
/**
* @author kcf <vidofnir@folksprak.org>
*/
lib_trait.attend<signature_actuator>
(
trait_actuator,
kind,
{
"example": () => lib_call.wrap(kind, example()),
"rotate": (actuator, increment) => rotate(lib_call.unwrap(actuator), increment),
"use": (actuator, token) => use(lib_call.unwrap(actuator), token),
"export": (actuator) => ({"kind": kind, "data": export_(actuator.data)}),
"import": (raw) => lib_call.wrap(kind, import_(raw["data"])),
}
)
;
}
}
}
}