File LICENSE added (mode: 100644) (index 0000000..4dc80d2) |
|
1 |
|
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) |
|
2 |
|
|
|
3 |
|
Redistribution and use in source and binary forms, with or without |
|
4 |
|
modification, are permitted provided that the following conditions are |
|
5 |
|
met: |
|
6 |
|
|
|
7 |
|
* Redistributions of source code must retain the above copyright |
|
8 |
|
notice, this list of conditions and the following disclaimer. |
|
9 |
|
* Redistributions in binary form must reproduce the above |
|
10 |
|
copyright notice, this list of conditions and the following disclaimer |
|
11 |
|
in the documentation and/or other materials provided with the |
|
12 |
|
distribution. |
|
13 |
|
|
|
14 |
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
15 |
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
16 |
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
17 |
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
18 |
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
19 |
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
20 |
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
21 |
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
22 |
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
23 |
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
24 |
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
File Makefile changed (mode: 100644) (index 30805d4..a6b2e5c) |
... |
... |
pjass.exe: $(SRC) main.c token.yy.c grammar.tab.c |
90 |
90 |
src-release: pjass-git-$(VERSION)-src.zip ## Builds the source zipball |
src-release: pjass-git-$(VERSION)-src.zip ## Builds the source zipball |
91 |
91 |
binary-release: pjass.exe pjass-git-$(VERSION).zip ## Builds the exe zipball |
binary-release: pjass.exe pjass-git-$(VERSION).zip ## Builds the exe zipball |
92 |
92 |
|
|
93 |
|
pjass-git-$(VERSION)-src.zip: main.c grammar.y token.l Makefile notes.txt readme.txt $(SRC:.c=.h) $(SRC) |
|
|
93 |
|
pjass-git-$(VERSION)-src.zip: main.c grammar.y token.l Makefile readme.md AUTHORS LICENSE $(SRC:.c=.h) $(SRC) |
94 |
94 |
zip -q -r pjass-git-$(VERSION)-src.zip $^ tests/should-check/ tests/should-fail/ |
zip -q -r pjass-git-$(VERSION)-src.zip $^ tests/should-check/ tests/should-fail/ |
95 |
95 |
|
|
96 |
96 |
pjass-git-$(VERSION).zip: pjass.exe |
pjass-git-$(VERSION).zip: pjass.exe |
File notes.txt deleted (index 13d65e0..0000000) |
1 |
|
To compile it get MinGW, which contains the gcc and install it as described here: |
|
2 |
|
|
|
3 |
|
http://csjava.occ.cccd.edu/~gilberts/mingw/ |
|
4 |
|
|
|
5 |
|
After having added the mingw/bin directory to the PATH variable simply switch to your pjass development directory |
|
6 |
|
in the command prompt and type mingw32-make to compile the executable. |
|
7 |
|
You'll only want to edit misc.c, token.l, grammar.y, and pjass.res - all other files are generated. |
|
8 |
|
If you're going to change token.l or grammar.y, you'll need flex/bison. Those are not included in MinGW. |
|
9 |
|
You'll better get those from here: http://www.monmouth.com/~wstreett/lex-yacc/lex-yacc.html |
|
10 |
|
Alternatively you can get Cygwin and add the cygwin/bin directory to your PATH variable. |
|
11 |
|
Last but not least I've added version information to the executable, for compilation under Windows that is. |
|
12 |
|
You'll need ResourceHacker which you can obtain here: |
|
13 |
|
|
|
14 |
|
http://www.angusj.com/resourcehacker/ |
|
15 |
|
|
|
16 |
|
Extract it to a directory and update the RESHCK definition in the makefile to match that path. |
|
17 |
|
If you're not compiling under Windows, remove the following line from the makefile: |
|
18 |
|
|
|
19 |
|
$(RESHCK) -addskip $@.exe, $@.exe, resource.res ,,, |
|
20 |
|
|
|
21 |
|
Current version is 1.0l, defined in pjass.res. |
|
22 |
|
|
|
23 |
|
Additionally UPX is used to pack the executable. You can get it here: |
|
24 |
|
|
|
25 |
|
http://upx.sourceforge.net |
|
26 |
|
|
|
27 |
|
Good luck, PitzerMike |
|
File readme.md added (mode: 100644) (index 0000000..359cf0e) |
|
1 |
|
# pjass |
|
2 |
|
|
|
3 |
|
A lightweight and fast Jass2 parser for bison/yacc |
|
4 |
|
Original by Rudi Cilibrasi |
|
5 |
|
And improved by many others |
|
6 |
|
This repo now maintained by lep |
|
7 |
|
|
|
8 |
|
# Usage |
|
9 |
|
|
|
10 |
|
To use this program, list the files you would like to parse in order. |
|
11 |
|
If you would like to parse from standard input (the keyboard), then |
|
12 |
|
use `-` as an argument. If you supply no arguments to pjass, it will |
|
13 |
|
parse the console standard input by default. |
|
14 |
|
|
|
15 |
|
To test this program: |
|
16 |
|
``` |
|
17 |
|
$ pjass common.j common.ai Blizzard.j |
|
18 |
|
``` |
|
19 |
|
|
|
20 |
|
If you are using pjass via JNGP replace the `pjass.exe` in `JNGP/jasshelper/` |
|
21 |
|
with the updated one. |
|
22 |
|
|
|
23 |
|
Also look at the output of `pjass -h`. |
|
24 |
|
|
|
25 |
|
# Building |
|
26 |
|
|
|
27 |
|
This uses flex and bison, so install them first. |
|
28 |
|
Then just run GNU-make (e.g. `make` or `gmake`). |
|
29 |
|
|
|
30 |
|
You can also run `make help` to get a bunch of options but the other most |
|
31 |
|
important make-target is probably `test` which builds pjass and runs all |
|
32 |
|
supplied tests in `tests/`. |
|
33 |
|
|
|
34 |
|
# History |
|
35 |
|
|
|
36 |
|
In this repo i tried to capture the whole history of pjass. |
|
37 |
|
For this i imported the cvs repo from sourceforge and went through the |
|
38 |
|
pjass-thread on wc3c. On top of that i added my own modifications. |
|
39 |
|
This probably isn't the real history as for one some attachments on wc3c |
|
40 |
|
were faulty but i guess it's as good as it can get. |
|
41 |
|
|
|
42 |
|
# Links |
|
43 |
|
|
|
44 |
|
You can find news about this program and updates at |
|
45 |
|
http://hiveworkshop.com/threads/pjass-updates.258738/ and |
|
46 |
|
http://www.wc3c.net/showthread.php?t=75239 and |
|
47 |
|
http://jass.sourceforge.net |
|
48 |
|
|
|
49 |
|
|
File readme.txt deleted (index 270df85..0000000) |
1 |
|
pjass 25.10.2014 (v 1.0n) |
|
2 |
|
A lightweight and fast Jass2 parser for bison/yacc |
|
3 |
|
by Rudi Cilibrasi |
|
4 |
|
Sun Jun 8 00:51:53 CEST 2003 |
|
5 |
|
thanks to Jeff Pang for the handy documentation that this was based |
|
6 |
|
on at http://jass.sourceforge.net/ |
|
7 |
|
Released under the BSD license |
|
8 |
|
|
|
9 |
|
To use this program, list the files you would like to parse in order. |
|
10 |
|
If you would like to parse from standard input (the keyboard), then |
|
11 |
|
use - as an argument. If you supply no arguments to pjass, it will |
|
12 |
|
parse the console standard input by default. |
|
13 |
|
|
|
14 |
|
To test this program: |
|
15 |
|
pjass common.j common.ai Blizzard.j |
|
16 |
|
|
|
17 |
|
You can find news about this program and updates at |
|
18 |
|
http://www.wc3campaigns.net/showthread.php?t=75239 and |
|
19 |
|
http://jass.sourceforge.net/ |
|
20 |
|
|
|
21 |
|
Please send comments to |
|
22 |
|
Rudi Cilibrasi |
|
23 |
|
cilibrar@ofb.net |
|