CFLAGS=-O3 -Wextra -Wall -Werror -fno-strict-aliasing -std=gnu11 \
-I./sylvan/src
-$(PROGRAM): $(PROGRAM).c $(OBJS)
- $(CC) $(CFLAGS) -o $@ $<
-
-%.o: %.c %.h
- $(CC) $(CFLAGS) -c -o $@ $<
+# We combine all the object files into one executable
+$(PROGRAM): $(PROGRAM).o $(OBJS)
+ $(CC) $< $(OBJS) -o $@
clean:
- $(RM) -v $(PROGRAM) $(OBJS)
+ $(RM) -v $(PROGRAM).o $(PROGRAM) $(OBJS)
#include <sylvan.h>
#include "mc.h"
+#include "sokoban.h"
//#include <sokoban.h>
//#include <object.h>
//#include <coord.h>
+//Global variables
bool DEBUG = false;
+strategy strat = HYBRID;
void usage(char *prg){
fprintf(stderr,
}
void solve(FILE *inputstream){
- clock_t time_start, time_file_read;
- int buffer;
+ clock_t time_start_read, time_end_read;
+ clock_t time_start_encode, time_end_encode;
- time_start = clock();
- while((buffer = fgetc(inputstream)) != EOF){
- printf("%c", buffer);
- // Alex:
- // Screen reading
- // - Removing outside walls
- // - Bucket fill
- // - [tile]
- // - tile = structure {int, int, enumtile}
+ time_start_read = clock();
+ //struct sokoban_screen *screen = parse_screen(inputstream);
+ parse_screen(inputstream);
+ time_end_read = clock();
+
+ time_start_encode = clock();
+ switch(strat){
+ case COORD:
+ case OBJECT:
+ case HYBRID:
+ default:
+ fprintf(stderr, "Huh?");
+ exit(2);
}
- time_file_read = clock();
+ time_end_encode = clock();
- // Both: Encoding in both schemes
// Future: SMC
- fprintf(stderr, "CPU time taken: %fs\n",
- ((double) (time_file_read-time_start))/CLOCKS_PER_SEC);
+ fprintf(stderr, "Reading: %fs\n",
+ ((double) (time_end_read-time_start_read))/CLOCKS_PER_SEC);
+ fprintf(stderr, "Encoding: %fs\n",
+ ((double) (time_end_encode-time_start_encode))/CLOCKS_PER_SEC);
}
int main(int argc, char **argv){
- strategy strat = HYBRID;
int optchar;
while((optchar = getopt(argc, argv, "cdhoy")) != -1){