##// END OF EJS Templates
Remove curact, implement selact
Remove curact, implement selact

File last commit:

r13:f0a3bfeb default
r45:0669fc21 default
Show More
README.md
44 lines | 1.6 KiB | text/x-minidsrc | MarkdownLexer
formatting
r7 (инструкции на Русском - внизу)
Alexander Sukhoverkhov
Initial commit
r0 # sugar-qsp
Compiler for QSP games which creates monolithic HTML pages.
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1
## Usage
There are three mastery levels
Another one
r5 1. Just build me the game:<br/>
`sugar-qsp game.txt`<br/>
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1 And it will create the game in game.html
Another one
r5 2. I know what I'm doing:<br/>
`sugar-qsp game.txt -o game.html --body body.html --js jquery.js my-js-library.js --css styles/*.css`<br/>
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1 All options are self-explanatory. The result is a monolithic html specified
with the `-o` option. Default `body.html` (used by the first mastery level) can
be found in `extas` directory.
Tutorial game works!
r6 3. I'm a frontend developer!<br/>
`sugar-qsp game.txt -c -o game.js`<br/>
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1 It just builds the game script into a js you can put on your website. To run
the game execute `SugarQSP.start()`
# sugar-qsp
Компилятор для игр на QSP создающий монолитные страницы на HTML.
## Инструкции
Есть три уровня мастерства.
formatting
r7 1. **Просто собери мне игру**:<br/>
Tutorial game works!
r6 `sugar-qsp game.txt`<br/>
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1 Создаст игру в game.html
formatting
r7 2. **Я знаю что делаю**:<br/>
Tutorial game works!
r6 `sugar-qsp game.txt -o game.html --body body.html --js jquery.js my-js-library.js --css styles/*.css`<br/>
A few parser fixes
r13 Если вы знаете что делаете, то для вас смысл опций очевиден. `body.html` и `default.css`
лежат в каталоге `extras`.
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1
formatting
r7 3. **Я - фронтендер!**<br/>
Tutorial game works!
r6 `sugar-qsp game.txt -c -o game.js`<br/>
100% parser, 100% macros, 50% intrinsics, 10% api, 0% misc
r1 Просто соберёт игру в Javascript файл который вы можете разместить на своём
A few parser fixes
r13 сайте как вам угодно.