Bill Currie
e1d66fdfb8
make sure qc-parse.h gets built before files that depend on it
2002-06-03 03:45:24 +00:00
Bill Currie
f00e892d4e
mingw gcc 3.1 is freaking weird
2002-06-02 05:27:32 +00:00
Bill Currie
c13e94db78
must be more careful with the return value of va
2002-06-02 01:10:31 +00:00
Bill Currie
84b46d720e
slowly killing cmdlib
2002-06-01 06:59:02 +00:00
Bill Currie
8e479c5549
don't need that any more :)
2002-06-01 05:57:55 +00:00
Bill Currie
12cfe6190b
do some file renaming
2002-06-01 05:37:18 +00:00
Bill Currie
7b993f97d2
more cleanups
2002-06-01 05:30:16 +00:00
Bill Currie
c4d0c574ee
clean up qfcc.h a bit
2002-06-01 05:06:19 +00:00
Bill Currie
8f2d1fa2d9
more cmdlib cleanup
2002-06-01 04:41:25 +00:00
Bill Currie
9e5f8c3bd9
win32 compile fixes
2002-05-31 19:24:56 +00:00
Bill Currie
b3adadc347
@this will provide an id field named ".this" (ie, .id .this (if .this would
...
parse in the first place:))
also kill build_type now that a field_type function is available in type.c
2002-05-31 16:58:42 +00:00
Bill Currie
4d267abd2a
make things a little quieter
2002-05-31 07:24:54 +00:00
Bill Currie
3af96782da
make qwaq build as part of the main tree (but /not/ install)
2002-05-31 06:55:35 +00:00
Jeff Teunissen
96fe150ff4
Add a clean target to quaketoascii's makefile.
2002-05-31 06:44:48 +00:00
Jeff Teunissen
dd47617c57
Update some gitignore files.
2002-05-31 06:40:52 +00:00
Bill Currie
c4811ccb52
seriously clean up qwaq. most of that stuff isn't needed any more
2002-05-31 06:16:10 +00:00
Bill Currie
ce6854ad05
not everybody /has/ d.o :)
2002-05-31 06:09:08 +00:00
Bill Currie
191232a383
get qwaq working with the objective stuff and do a simple messaging test
2002-05-31 06:02:26 +00:00
Bill Currie
24e7a88719
fix some method list emission bugs
2002-05-31 06:00:11 +00:00
Bill Currie
ccf2a0b34a
allocate defs using the correct size from the type
2002-05-31 05:04:16 +00:00
Bill Currie
3c7fb6a312
fix some missing ;s
2002-05-30 21:18:58 +00:00
Jeff Teunissen
26cda3214a
Forge: partial support for projects. Very (VERY!) incomplete.
2002-05-29 11:21:25 +00:00
Jeff Teunissen
6c9c62139a
Forge updates: Windows are now remembered and stuff is in general a bit
...
cleaner. Committing this so that the stuff I'm about to write won't totally
fubar everything. :)
2002-05-29 07:13:42 +00:00
Bill Currie
6fbf011073
rpm building fixes
2002-05-27 20:28:10 +00:00
Jeff Teunissen
3edc57ef93
Forge updates. Compiles with latest GNUstep CVS, may not work with current
...
release (but should).
The interface is no longer defined in code -- it loads it from a .gorm file.
The code is a lot cleaner, and I'm working on project management again.
Generally, I'm having a lot of fun. :)
2002-05-26 11:24:00 +00:00
Jeff Teunissen
a116529db1
pak tool: Re-add the -f option and clean up the man page.
2002-05-25 02:47:53 +00:00
Bill Currie
34ec521198
vararg functions can now be imlemented in qc using @argc (number of params
...
passed through ...) and @argv (array of vectors, one for each ... param)
2002-05-22 20:43:29 +00:00
Bill Currie
60457ee7b8
clean up some expr creaion
2002-05-22 17:18:48 +00:00
Bill Currie
5b590c9301
that seems to have got the type parsing right. (void []) () foo will work
...
and .float () foo works too
2002-05-22 17:13:52 +00:00
Bill Currie
ddcaef5b0b
that didn't work so well :/
...
back it out for now till I figure out how to get it parsing .float () foo
correctly
2002-05-22 16:38:29 +00:00
Bill Currie
51fbbb7c5c
qc-parse.y:
...
allow complex types for function return values
type.c:
fix a missing break and an unneeded printout
2002-05-22 16:29:24 +00:00
Bill Currie
3967f5cf95
type.h:
...
*type_method to type_Method
emit.c:
support casting between pointers
expr.c:
support casting between pointers
method.c:
correct the type for _cmd
type_method to type_Method.aux_type
qc-lex.l:
Method type is a poniter to a method
qc-parse.y:
support , args to messages (not fully implemented yet)
type.c:
*type_method to type_Method and make type_Method a pointer to a method
2002-05-22 05:03:36 +00:00
Bill Currie
a1fe5efd27
initialize class_Class.super_class iff @keywords are seen (ie, compiling
...
obj code).
2002-05-22 01:39:07 +00:00
Bill Currie
4697ce281e
define Protocol type correctly
2002-05-21 23:38:40 +00:00
Bill Currie
4315707008
class.c:
...
avoid possible segfault
expr.c:
correct the return value type checking to handle super classes
2002-05-21 23:29:21 +00:00
Bill Currie
3a99ab8cea
trim off the trailing _ from method def names
2002-05-21 23:02:56 +00:00
Bill Currie
2a73235d35
fix some method bugs
2002-05-21 22:51:46 +00:00
Bill Currie
9f06f89d57
write out the module data needed for the obj runtime
2002-05-21 21:28:40 +00:00
Bill Currie
e11e2f3718
SELF -> @self (looks better (IMO:)) and make sure the .self def gets
...
generatoed and used when @self is seen
2002-05-18 00:30:14 +00:00
Bill Currie
5be384da63
create a `SELF' keyword so the global self entity can be handled sanely.
...
Not fully implemented yet.
2002-05-17 20:25:46 +00:00
Bill Currie
2c0de5cb3e
print out some extra info for function defs
2002-05-17 20:03:59 +00:00
Bill Currie
dc5cd8460e
`super' is now a keyword
2002-05-17 19:47:15 +00:00
Bill Currie
451bfbddfe
fix a snafu with current_class and get ivar access working properly (cross
...
fingers:)
2002-05-17 19:35:26 +00:00
Bill Currie
d8c66aef76
don't seg if strct is null
2002-05-17 19:34:40 +00:00
Bill Currie
2e8c18f8b6
handle unimplemented classes a little better (will do for now till I sort
...
out some sort of resolution for them)
2002-05-17 18:46:11 +00:00
Bill Currie
b1d1159ae2
allow methods to be builtins
2002-05-17 18:35:54 +00:00
Bill Currie
97170e97b5
setup the default visibility properly
2002-05-17 17:58:57 +00:00
Bill Currie
ef9f9cda2f
pr_obj.h:
...
define the class info stuff
expr.h pr_def.c:
fix a FIXME
class.c expr.c type.c:
make id ev_pointer.ev_object rather than ev_pointer.ev_class
2002-05-17 17:37:44 +00:00
Bill Currie
6965642030
get ivars working better (need to get rid of self.) and [super ...] now
...
works.
2002-05-17 06:20:27 +00:00
Bill Currie
91c4039495
add some functionality to qfprogs (globals and strings dumping)
2002-05-16 23:44:53 +00:00