#include #ifdef __linux__ #include #else #include #include #endif #include #include "zlib.h" #include "amx.h" #include "amxdbg.h" #include "amxxpc.h" #include "Binary.h" static PRINTF pc_printf = NULL; void ReadFileIntoPl(abl *pl, FILE *fp); bool CompressPl(abl *pl); void Pl2Bh(abl *pl, BinPlugin *bh); void WriteBh(BinaryWriter *bw, BinPlugin *bh); int main(int argc, char **argv) { struct abl pl32; struct abl pl64; #ifdef _DEBUG printf("debug clamp\n"); getchar(); #endif #ifdef __linux__ HINSTANCE lib = NULL; if (FileExists("./amxxpc32.so")) lib = dlmount("./amxxpc32.so"); else lib = dlmount("amxxpc32.so"); #else HINSTANCE lib = dlmount("amxxpc32.dll"); #endif if (!lib) { #ifdef __linux__ printf("32bit compiler failed to instantiate: %s\n", dlerror()); #else printf("32bit compiler failed to instantiate: %d\n", GetLastError()); #endif exit(0); } COMPILER sc32 = (COMPILER)dlsym(lib, "Compile32"); pc_printf = (PRINTF)dlsym(lib, "pc_printf"); if (!sc32 || !pc_printf) { #ifdef __linux__ printf("32bit compiler failed to link: %p.\n",sc32); #else printf("32bit compiler failed to link: %d.\n", GetLastError()); #endif exit(0); } pc_printf("Welcome to the AMX Mod X %s Compiler.\n", VERSION_STRING); pc_printf("Copyright (c) 1997-2005 ITB CompuPhase, AMX Mod X Team\n\n"); if (argc < 2) { pc_printf("Usage: [options]\n"); pc_printf("Use -? or --help to see full options\n\n"); getchar(); exit(0); } if (!strcmp(argv[1], "-?") || !strcmp(argv[1], "--help")) { show_help(); pc_printf("Press any key to continue.\n"); getchar(); exit(0); } sc32(argc, argv); char *file = FindFileName(argc, argv); if (file == NULL) { pc_printf("Could not locate the output file.\n"); exit(0); } else if (strstr(file, ".asm")) { pc_printf("Assembler output succeeded.\n"); exit(0); } else { FILE *fp = fopen(file, "rb"); if (fp == NULL) { pc_printf("Could not locate output file %s (compile failed).\n", file); exit(0); } ReadFileIntoPl(&pl32, fp); pl32.cellsize = 4; fclose(fp); } unlink(file); HINSTANCE lib64 = NULL; #ifdef __linux__ if (FileExists("./amxxpc64.so")) lib64 = dlmount("./amxxpc64.so"); else lib64 = dlmount("amxxpc64.so"); #else lib64 = dlmount("amxxpc64.dll"); #endif if (!lib64) { pc_printf("64bit compiler failed to instantiate.\n"); exit(0); } COMPILER sc64 = (COMPILER)dlsym(lib64, "Compile64"); if (!sc64) { #ifdef __linux__ pc_printf("64bit compiler failed to link: %s.\n", dlerror()); #else pc_printf("64bit compiler failed to link: %d.\n", GetLastError()); #endif exit(0); } sc64(argc, argv); dlclose(lib64); if (file == NULL) { pc_printf("Could not locate the output file on second pass.\n"); exit(0); } else { FILE *fp = fopen(file, "rb"); if (fp == NULL) { pc_printf("Could not locate output file on second pass (compile failed).\n"); exit(0); } ReadFileIntoPl(&pl64, fp); pl64.cellsize = 8; fclose(fp); } ///////////// // COMPRSSION ///////////// CompressPl(&pl32); CompressPl(&pl64); char *newfile = new char[strlen(file)+3]; strcpy(newfile, file); if (!strstr(file, ".amxx") && !strstr(file, ".AMXX")) strcat(newfile, "x"); FILE *fp = fopen(newfile, "wb"); if (!fp) { pc_printf("Error trying to write file %s.\n", newfile); exit(0); } BinPlugin bh32, bh64; Pl2Bh(&pl32, &bh32); Pl2Bh(&pl64, &bh64); try { BinaryWriter bw(fp); bw.WriteUInt32(MAGIC_HEADER2); bw.WriteUInt16(MAGIC_VERSION); bw.WriteUInt8(2); //base header int baseaddr = sizeof(int32_t) + sizeof(int16_t) + sizeof(int8_t); //entry is 4 ints and a byte int entrysize = (sizeof(int32_t) * 4) + sizeof(int8_t); //extend this by the two entries we have baseaddr += entrysize * 2; bh32.offs = baseaddr; bh64.offs = bh32.offs + bh32.disksize; WriteBh(&bw, &bh32); WriteBh(&bw, &bh64); bw.WriteChars(pl32.cmp, pl32.cmpsize); bw.WriteChars(pl64.cmp, pl64.cmpsize); } catch (...) { fclose(fp); unlink(file); pc_printf("Error, failed to write binary\n"); dlclose(lib); exit(0); } fclose(fp); unlink(file); pc_printf("Done.\n"); dlclose(lib); exit(0); } void WriteBh(BinaryWriter *bw, BinPlugin *bh) { bw->WriteUInt8(bh->cellsize); bw->WriteUInt32(bh->disksize); bw->WriteUInt32(bh->imagesize); bw->WriteUInt32(bh->memsize); bw->WriteUInt32(bh->offs); } void Pl2Bh(abl *pl, BinPlugin *bh) { bh->cellsize = pl->cellsize; bh->disksize = pl->cmpsize; bh->imagesize = pl->size; bh->memsize = pl->stp; } bool CompressPl(abl *pl) { pl->cmpsize = compressBound(pl->size); pl->cmp = new char[pl->cmpsize]; int err = compress((Bytef *)(pl->cmp), (uLongf *)&(pl->cmpsize), (const Bytef *)(pl->data), pl->size); delete [] pl->data; pl->data = NULL; if (err != Z_OK) { pc_printf("internal error - compression failed on first pass: %d\n", err); exit(0); } return true; } //As of Small 3.0, there's extra debug info in the file we need to get out. //Sadly this is placed somewhere really inconvenient and I'm mad. void ReadFileIntoPl(abl *pl, FILE *fp) { AMX_HEADER hdr; AMX_DBG_HDR dbg; fread(&hdr, sizeof(hdr), 1, fp); amx_Align32((uint32_t *)&hdr.stp); amx_Align32((uint32_t *)&hdr.size); pl->stp = hdr.stp; int size = hdr.size; if (hdr.flags & AMX_FLAG_DEBUG) { fseek(fp, hdr.size, SEEK_SET); fread(&dbg, sizeof(dbg), 1, fp); size += dbg.size; } pl->size = size; pl->data = new char[size]; rewind(fp); fread(pl->data, 1, size, fp); } //we get the full name of the file here //our job is to a] switch the .sma extension to .amx // and to b] strip everything but the trailing name char *swiext(const char *file, const char *ext, int isO) { int i = 0, pos = -1, j = 0; int fileLen = strlen(file); int extLen = strlen(ext); int max = 0, odirFlag = -1; for (i=fileLen-1; i>=0; i--) { if (file[i] == '.' && pos == -1) { pos = i+1; } if ((file[i] == '/' || file[i] == '\\') && !isO) { odirFlag = i+1; //realign pos - we've just stripped fileLen-i chars pos -= i + 1; break; } } char *newbuffer = new char[fileLen+strlen(ext)+2]; fileLen += strlen(ext); if (odirFlag == -1) { strcpy(newbuffer, file); } else { strcpy(newbuffer, &(file[odirFlag])); } if (pos > -1) { for (i=pos; i0) { return swiext(argv[save], "amx", 0); } return NULL; } void show_help() { printf("Options:\n"); printf("\t-A alignment in bytes of the data segment and the stack\n"); printf("\t-a output assembler code\n"); printf("\t-C[+/-] compact encoding for output file (default=-)\n"); printf("\t-c codepage name or number; e.g. 1252 for Windows Latin-1\n"); printf("\t-Dpath active directory path\n"); printf("\t-d0 no symbolic information, no run-time checks\n"); printf("\t-d1 [default] run-time checks, no symbolic information\n"); printf("\t-d2 full debug information and dynamic checking\n"); printf("\t-d3 full debug information, dynamic checking, no optimization\n"); printf("\t-e set name of error file (quiet compile)\n"); printf("\t-H window handle to send a notification message on finish\n"); printf("\t-i path for include files\n"); printf("\t-l create list file (preprocess only)\n"); printf("\t-o set base name of output file\n"); printf("\t-p set name of \"prefix\" file\n"); printf("\t-r[name] write cross reference report to console or to specified file\n"); } #ifdef __linux__ bool FileExists(const char *file) { FILE *fp = fopen(file, "rb"); if (!fp) return false; fclose(fp); return true; } #endif