changelog
- Fri, 10 Jan 2014 21:58:42 +0200
- by Teemu Piippo <crimsondusk64@gmail.com> [Fri, 10 Jan 2014 21:58:42 +0200] rev 72
- - major refactoring begins
- Fri, 10 Jan 2014 16:11:49 +0200
- by Teemu Piippo <crimsondusk64@gmail.com> [Fri, 10 Jan 2014 16:11:49 +0200] rev 71
- - moved sources to src/, migrated to cmake
- Wed, 02 Jan 2013 23:57:46 +0200
- by Teemu Piippo <crimsondusk64@gmail.com> [Wed, 02 Jan 2013 23:57:46 +0200] rev 70
- test
- Wed, 19 Dec 2012 22:01:42 +0200
- by Teemu Piippo <crimsondusk64@gmail.com> [Wed, 19 Dec 2012 22:01:42 +0200] rev 69
- So it turns out that the functions I thought were taking float are actually taking int. So, with the only reason for float removed, the float type is removed as well. I'd rather have fixed point anyway.
- Wed, 19 Dec 2012 13:44:18 +0200
- by Teemu Piippo <crimsondusk64@gmail.com> [Wed, 19 Dec 2012 13:44:18 +0200] rev 68
- Added constants, these are defined with const, take their value immediately and are replaced out with their value when used. The strlen operator can be used to get a string constant's length.
- Wed, 19 Dec 2012 04:20:02 +0200
- by Teemu Piippo <crimsondusk64@gmail.com> [Wed, 19 Dec 2012 04:20:02 +0200] rev 67
- Some rework on variables
- Wed, 19 Dec 2012 03:27:15 +0200
- by Teemu Piippo <crimsondusk64@gmail.com> [Wed, 19 Dec 2012 03:27:15 +0200] rev 66
- Good bunch of changes
- Sun, 26 Aug 2012 23:54:58 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sun, 26 Aug 2012 23:54:58 +0300] rev 65
- Don't try to read expressions as statements. That yields nothing useful and inevidently bombs out anyway.
- Sun, 26 Aug 2012 23:28:09 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sun, 26 Aug 2012 23:28:09 +0300] rev 64
- Fixed: parser allowed command calls with one too few arguments
- Sun, 26 Aug 2012 23:18:59 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sun, 26 Aug 2012 23:18:59 +0300] rev 63
- - Fixed error display - peeking was pushing recorded `cursor` position out of sync
- Added a rudimentary dynamic array class.. not used yet.
- Sat, 25 Aug 2012 05:22:32 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sat, 25 Aug 2012 05:22:32 +0300] rev 62
- renamed to undefined labels, not unmarked labels...
- Sat, 25 Aug 2012 05:20:16 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sat, 25 Aug 2012 05:20:16 +0300] rev 61
- goto is now allowed to reference labels that will get defined afterwards.
- Sat, 25 Aug 2012 05:05:58 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sat, 25 Aug 2012 05:05:58 +0300] rev 60
- only print revision in version header if it's non-zero
- Sat, 25 Aug 2012 04:19:22 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sat, 25 Aug 2012 04:19:22 +0300] rev 59
- Added support for continue-statements
- Sat, 25 Aug 2012 04:02:37 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sat, 25 Aug 2012 04:02:37 +0300] rev 58
- Renamed 'block stack' to scope stack for more clarified code..
- Sat, 25 Aug 2012 03:53:10 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sat, 25 Aug 2012 03:53:10 +0300] rev 57
- Fixed: else was alloed even without if strictly preceding it
- Sat, 25 Aug 2012 03:40:36 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sat, 25 Aug 2012 03:40:36 +0300] rev 56
- Added support for else-statements
- Sat, 25 Aug 2012 03:04:14 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sat, 25 Aug 2012 03:04:14 +0300] rev 55
- Added support for the ternary operator.
- Tue, 14 Aug 2012 01:54:17 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Tue, 14 Aug 2012 01:54:17 +0300] rev 54
- Added floating point support for the most part. However, decimals are somehow lost during a cast..
- Tue, 14 Aug 2012 00:59:39 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Tue, 14 Aug 2012 00:59:39 +0300] rev 53
- Added support for operators &&, ||, &, | and ^
- Tue, 14 Aug 2012 00:48:02 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Tue, 14 Aug 2012 00:48:02 +0300] rev 52
- Added ! operator support. It's not really an operator since it's just checked at the beginning of the expression value but eh.
- Tue, 14 Aug 2012 00:20:59 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Tue, 14 Aug 2012 00:20:59 +0300] rev 51
- Added <<= and >>= operator support. Zandronum does not provide these, thus they are translated to their longer forms by the compiler. Also aded << and >>.
- Mon, 13 Aug 2012 23:10:39 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Mon, 13 Aug 2012 23:10:39 +0300] rev 50
- Added default label for switch
- Mon, 13 Aug 2012 19:12:21 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Mon, 13 Aug 2012 19:12:21 +0300] rev 49
- rename ObjWriter::RecordBuffer to SwitchBuffer, as it is designed specifically for switch and will break if used genericly
- Mon, 13 Aug 2012 19:04:29 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Mon, 13 Aug 2012 19:04:29 +0300] rev 48
- Added switch support... fixed more problems with marks in the process
- Sun, 12 Aug 2012 04:45:27 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sun, 12 Aug 2012 04:45:27 +0300] rev 47
- some cleanup
- Sun, 12 Aug 2012 04:40:33 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sun, 12 Aug 2012 04:40:33 +0300] rev 46
- Expressions now allow multiple operators
- Sun, 12 Aug 2012 04:13:27 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sun, 12 Aug 2012 04:13:27 +0300] rev 45
- Removed mark types as they served absolutely zero purpose
- Sun, 12 Aug 2012 04:10:25 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sun, 12 Aug 2012 04:10:25 +0300] rev 44
- Added do-while loop support
- Sun, 12 Aug 2012 03:23:33 +0300
- by Teemu Piippo <crimsondusk64@gmail.com> [Sun, 12 Aug 2012 03:23:33 +0300] rev 43
- Added for-loop support