2010-11-17 08:30:07 +08:00
|
|
|
|
%% @author Lo<4C>c Hoguin <essen@dev-extend.eu>
|
|
|
|
|
%% @copyright 2010 Lo<4C>c Hoguin.
|
|
|
|
|
%% @doc EGS script parser.
|
|
|
|
|
%%
|
|
|
|
|
%% This file is part of EGS.
|
|
|
|
|
%%
|
|
|
|
|
%% EGS is free software: you can redistribute it and/or modify
|
|
|
|
|
%% it under the terms of the GNU Affero General Public License as
|
|
|
|
|
%% published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
%% License, or (at your option) any later version.
|
|
|
|
|
%%
|
|
|
|
|
%% EGS 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 Affero General Public License for more details.
|
|
|
|
|
%%
|
|
|
|
|
%% You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
%% along with EGS. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2010-11-28 06:03:04 +08:00
|
|
|
|
Nonterminals declarations declaration instructions instruction case_tests case_test case_default.
|
|
|
|
|
Terminals integer name string call case default end event external function push subcall syscall '->' ',' ';' dot.
|
2010-11-17 08:30:07 +08:00
|
|
|
|
Rootsymbol declarations.
|
|
|
|
|
|
|
|
|
|
declarations -> declaration declarations : {'$1', '$2'}.
|
2010-11-28 06:03:04 +08:00
|
|
|
|
declarations -> '$empty' : nil.
|
2010-11-17 08:30:07 +08:00
|
|
|
|
|
2010-11-28 06:03:04 +08:00
|
|
|
|
declaration -> event name '->' instructions dot : {event, unwrap('$2'), '$4'}.
|
|
|
|
|
declaration -> external string dot : {external, unwrap('$2')}.
|
2010-11-17 08:30:07 +08:00
|
|
|
|
declaration -> function name '->' instructions dot : {function, unwrap('$2'), '$4'}.
|
|
|
|
|
|
|
|
|
|
instructions -> instruction ',' instructions : {'$1', '$3'}.
|
2010-11-28 06:03:04 +08:00
|
|
|
|
instructions -> instruction : {'$1', nil}.
|
2010-11-17 08:30:07 +08:00
|
|
|
|
|
2010-11-28 06:03:04 +08:00
|
|
|
|
instruction -> call string : {call, unwrap('$2')}.
|
|
|
|
|
instruction -> 'case' case_tests 'end' : {'case', '$2'}.
|
|
|
|
|
instruction -> push integer : {push, unwrap('$2')}.
|
|
|
|
|
instruction -> push string : {push, unwrap('$2')}.
|
|
|
|
|
instruction -> subcall string : {subcall, unwrap('$2')}.
|
|
|
|
|
instruction -> syscall : {syscall, unwrap('$1')}.
|
|
|
|
|
|
|
|
|
|
case_tests -> case_test ';' case_tests : {'$1', '$3'}.
|
|
|
|
|
case_tests -> case_test ';' case_default : {'$1', {'$3', nil}}.
|
|
|
|
|
case_tests -> case_test : {'$1', nil}.
|
|
|
|
|
case_test -> integer '->' instructions : {case_test, unwrap('$1'), '$3'}.
|
|
|
|
|
case_default -> default '->' instructions : {case_default, '$3'}.
|
2010-11-17 08:30:07 +08:00
|
|
|
|
|
|
|
|
|
Erlang code.
|
|
|
|
|
|
|
|
|
|
unwrap({_,_,V}) -> V.
|