aboutsummaryrefslogtreecommitdiff
path: root/engines/director/lingo
AgeCommit message (Collapse)Author
2017-03-07DIRECTOR: Lingo: Added definition for 'on' clauses without 'end'Eugene Sandulenko
2017-03-06DIRECTOR: Lingo: Split 'on ...' statement when preprocessingEugene Sandulenko
D4 scripts do not have respective 'end...' statement, which leads to syntax errors. Now we are preprocessing those as well.
2017-02-28Fix GCC Variable Range Warning.D G Turner
This was due to the greater than 0x7f being redundant for signed char.
2017-02-25DIRECTOR: Move utility functions to util.cppEugene Sandulenko
2017-02-24DIRECTOR: Lingo: Fix b_moveableSprite() stubEugene Sandulenko
2017-02-24DIRECTOR: Lingo: Clarified 'play' and 'play done' implementationsEugene Sandulenko
2017-02-24DIRECTOR: Lingo: Initial code for func_playdone()Eugene Sandulenko
2017-02-24DIRECTOR: Lingo: Initial code for func_play()Eugene Sandulenko
2017-02-24DIRECTOR: Encapsulated _nextMovie parameters into a stringEugene Sandulenko
2017-02-24DIRECTOR: Lingo: Clarified compile and exec debug level messagesEugene Sandulenko
2017-02-24DIRECTOR: Lingo: Show execution trace at earlier debug levelsEugene Sandulenko
2017-02-23DIRECTOR: Lingo: Try cleaned file names only when it makes senseEugene Sandulenko
2017-02-23DIRECTOR: Lingo: Clean file name of 8-bit character before loadingEugene Sandulenko
Mac has had possibility to have 8-bit characters in their filenames. In the modern world it goes with either codepages or UTF-8, which makes it much less compatible. Trying to mitigate that
2017-02-23DIRECTOR: Lingo: Fix stack underflow in argument assignmentEugene Sandulenko
2017-02-23DIRECTOR: Lingo: Do not pollute stack in c_assign()Eugene Sandulenko
2017-02-22DIRECTOR: Lingo: Initial code for field assignmentsEugene Sandulenko
2017-02-22DIRECTOR: Lingo: Implemented b_field() methodEugene Sandulenko
2017-02-22DIRECTOR: Lingo: Added type2str for REFERENCE typeEugene Sandulenko
2017-02-22DIRECTOR: Lingo: Fix stack overflow when assigning 'the' entityEugene Sandulenko
2017-02-22DIRECTOR: Lingo: Fixed stack underflow in handler executionEugene Sandulenko
2017-02-22DIRECTOR: Lingo: Avoid pushing fake values on stackEugene Sandulenko
2017-02-22DIRECTOR: Lingo: Fix when..then executionEugene Sandulenko
2017-02-22DIRECTOR: Lingo: Move repeat..with, repeat..while and when to relative addressesEugene Sandulenko
This makes whole Lingo compiled code relocatable
2017-02-22DIRECTOR: Lingo: Fixed float constants processingEugene Sandulenko
2017-02-22DIRECTOR: Lingo: Turned if() statement code into relative jumpsEugene Sandulenko
This will let us relocate code as we want, particularly when a macro/handler is defined
2017-02-22DIRECTOR: Lingo: Hid another trace under lingoparse debug flagEugene Sandulenko
2017-02-21DIRECTOR: Put parsing lingo debug ouptu to separate debug flagEugene Sandulenko
2017-02-20DIRECTOR: Hid noisy debug outputEugene Sandulenko
2017-02-20DIRECTOR: Added more debug output for scoreEugene Sandulenko
2017-02-17DIRECTOR: Beutify debug outputEugene Sandulenko
2017-02-17DIRECTOR: Fix script references for D3 (now for real)Eugene Sandulenko
2017-02-17DIRECTOR: Added Events debug channel, more debug output in LingoEugene Sandulenko
2017-02-16DIRECTOR: Lingo: Revert D3 script addressing modificationEugene Sandulenko
2017-02-15DIRECTOR: Lingo: Fix 'pause' implementationEugene Sandulenko
2017-02-14DIRECTOR: Lingo: Fix rest of the 'go to' family functionsEugene Sandulenko
2017-02-14DIRECTOR: Lingo: Fixed 'go to' functionsEugene Sandulenko
2017-02-14DIRECTOR: Lingo: Implement b_delay()Eugene Sandulenko
2017-02-12DIRECTOR: Lingo: Implemented \xC2 continuation symbol supportEugene Sandulenko
2017-02-12DIRECTOR: Lingo: Implemented stub for REFERENCE built-insEugene Sandulenko
2017-02-12DIRECTOR: Lingo: Added grammar for assignment to referencesEugene Sandulenko
2017-02-12DIRECTOR: Lingo: Fixing position count in lexerEugene Sandulenko
2017-02-12DIRECTOR: Lingo: Fix D3 script executionEugene Sandulenko
2017-02-11JANITORIAL: Formatting fixesEugene Sandulenko
2017-02-11DIRECTOR: Lingo: Simplfy movie presense check in 'go to movie'Eugene Sandulenko
2017-02-11DIRECTOR: Lingo: Implemented sanity checks for built-insEugene Sandulenko
2017-02-11DIRECTOR: Lingo: Probe movies in Mac Resource Forks in 'go to movie'Eugene Sandulenko
Currently, 'Gravity Ball' movie is launched every now and then in The Apartment 3.0 due to some bug in hadlers call sequence. Thus, rename it for the time being.
2017-02-10DIRECTOR: Lingo: Fixed parsing built-ins with arglistEugene Sandulenko
2017-02-10DIRECTOR: Lingo: Avoid deleting counter in 'repeat..with' statementEugene Sandulenko
2017-02-10DIRECTOR: Lingo: Fixed built-ins code generationEugene Sandulenko
2017-02-09DIRECTOR: Lingo: Documented D4 "Variables" LingoEugene Sandulenko
This completes the Director 4.0 grammar. Woo hoo!