This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "ecere" | |
class Game : GuiApplication | |
{ | |
resolution = res320x240; | |
fullScreen = true; | |
bool Cycle(bool idle) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Engine | |
{ | |
virtual void ::spec(any_object object); | |
} | |
class Wheel | |
{ | |
virtual void ::nos(any_object object); | |
} | |
class CarWheel : Wheel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "EcereAudio" | |
class ToneSound : private Sound | |
{ | |
bits = 16; | |
channels = 1; | |
frequency = 44100; | |
void GenerateTone(int freq, int duration, double volume) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version" : 0.2, | |
"ModuleName" : "simpleProject", | |
"Options" : { | |
"Warnings" : "All", | |
"TargetType" : "Executable", | |
"TargetFileName" : "simpleProject", | |
"Libraries" : [ | |
"ecere" | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void addDSTOffset(DateTime t) | |
{ | |
Date dstStart, dstEnd; | |
if(t.year > 2006) | |
{ | |
getWeekDay({ t.year, april, 0 }, sunday, 1, dstStart); | |
getWeekDay({ t.year, october, 32 }, sunday, -1, dstStart); | |
} | |
else | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
int main() | |
{ | |
int done = 0; | |
char * de = (char *)" "; | |
while(!done) | |
{ | |
int d; | |
done = 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RowTaskTimeEntries rOver { query = "SELECT TaskTimeEntries.ROWID, TaskTimeEntries.*, Tasks.ROWID FROM TaskTimeEntries LEFT OUTER JOIN Tasks ON TaskTimeEntries.Task = Tasks.ROWID WHERE " | |
"`Assigned to` = ? AND Date = ? AND `Start Time` < ? AND `End Time` > ? AND TaskTimeEntries.ROWID != ?" }; | |
int start = r.startTime, end = r.endTime; | |
int e1 = (start / 100) * 4 + (start % 100) / 15; | |
int e2 = (end / 100) * 4 + (end % 100) / 15; | |
int overlaps[96]; | |
int e; | |
bool gotOverlaps = false; | |
int nOverlaps = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int __ecereVMethodID___ecereNameSpace__ecere__sys__Archive_SetBufferSize; | |
struct __ecereNameSpace__ecere__com__Instance { void ** _vTbl; }; | |
struct __ecereNameSpace__ecere__com__Instance * __ecereClass___ecereNameSpace__ecere__sys__Archive; | |
void __ecereProp___ecereNameSpace__ecere__sys__Archive_Set_bufferSize(struct __ecereNameSpace__ecere__com__Instance * this, unsigned int value) | |
{ | |
((void (*)(struct __ecereNameSpace__ecere__com__Instance *, unsigned int bufferSize))__extension__ ( | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "ecere" | |
class AsyncTask : Thread | |
{ | |
public void * userData; | |
virtual bool any_object::notifyDone(); | |
void doSomething() | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "ecere" | |
// TODO: Will want it to be on the stack but be ref counted and have constructors, destructors | |
public enum StringAllocType { pointer, stack, heap }; | |
public struct ZString | |
{ | |
private: | |
char * _string; | |
int len; |