You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(136) |
Dec
(218) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(214) |
Feb
(208) |
Mar
(186) |
Apr
(15) |
May
(3) |
Jun
(35) |
Jul
(6) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(58) |
Aug
(123) |
Sep
(31) |
Oct
(9) |
Nov
|
Dec
(1) |
2006 |
Jan
(25) |
Feb
(10) |
Mar
(25) |
Apr
(61) |
May
|
Jun
(78) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
(12) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(10) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2014 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Rob <geo...@us...> - 2004-03-26 17:06:06
|
Update of /cvsroot/timewarp/source/melee In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5742/melee Modified Files: msprite.cpp Log Message: contains experimental shade-code, but it's disabled Index: msprite.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/msprite.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** msprite.cpp 24 Mar 2004 23:51:39 -0000 1.17 --- msprite.cpp 26 Mar 2004 16:55:07 -0000 1.18 *************** *** 17,20 **** --- 17,457 ---- #include "mview.h" + BITMAP *bmp_rot(BITMAP *ref, double a); + + bool showshademaps = false; + + const int RotAngles = 64; // number of rotation-angles + const int RotSize = 128; // max size of the image, should be a power of 2 ? + int xy_rotation_table[2*RotAngles*RotSize*RotSize]; + + bool initialized_rotations = false; + void init_rotation_table(); + + bool use_shademaps = false; + + + + // should really be an array of angles/factors + BITMAP *SpaceSprite::add_shades(BITMAP *ref, double amb, Light *light, int Nlights, double ref_angle) + { + if (!shademap) + return 0; + + int w, h; + + + w = ref->w; + h = ref->h; + + if (w > 125 || h > 125) + return 0; + + double *totlight = new double [w*h]; // rough first version, should be r,g,b + + int ilight; + for ( ilight = 0; ilight < Nlights; ++ilight ) + { + double a = light[ilight].angle + ref_angle; + while (a < 0) + a += PI2; + while (a >= PI2) + a -= PI2; + + int index; + index = a * count / PI2; + + //message.print(1500, 15, "index[%i]", index); + + int k; + k = index * w * h; + + int m = 0; + + int ix, iy; + for ( iy = 0; iy < h; ++iy ) + { + for ( ix = 0; ix < w; ++ix ) + { + if (ilight == 0) + totlight[m] = 0; + + totlight[m] += light[ilight].intensity * shademap[k]; + + ++k; + ++m; + } + } + } + + BITMAP *dest = create_bitmap_ex(32, w, h); + clear_to_color(dest, makecol(255,0,255)); + + int m; + m = 0; + + int ix, iy; + for ( iy = 0; iy < h; ++iy ) + { + for ( ix = 0; ix < w; ++ix ) + { + // only needed to skip transparent colors. + int col; + col = getpixel(ref, ix, iy); + if (col == makecol(255,0,255)) + { + ++m; + continue; + } + + // the average (or reference, ambient-only image), and the extra + // lights hitting the ship (casting shadows) + int r, g, b; + r = amb*rmap[m] + totlight[m] * rmap[m]; + g = amb*gmap[m] + totlight[m] * gmap[m]; + b = amb*bmap[m] + totlight[m] * bmap[m]; + + if (r > 255) r = 255; + if (g > 255) g = 255; + if (b > 255) b = 255; + + putpixel(dest, ix, iy, makecol(r, g, b)); + + ++m; + } + } + + delete[] totlight; + + return dest; + } + + + void SpaceSprite::init_shademaps() + { + if (!initialized_rotations) + { + initialized_rotations = true; + init_rotation_table(); + } + + + shademap = new double [count * w * h]; + + // the reference intensity of the different colors, needed to scale the + // light that falls on the ship. + rmap = new double [w * h]; + gmap = new double [w * h]; + bmap = new double [w * h]; + + int n; + + int k; + + + // first, create an average intensity map of the ship: + double *Iref = new double [w*h]; + + for ( n = 0; n < count; ++n ) + { + k = 0; + BITMAP *bmp = bmp_rot(b[0][n], -n*PI2/count); + + int ix, iy; + for ( iy = 0; iy < h; ++iy ) + { + for ( ix = 0; ix < w; ++ix ) + { + int col; + col = getpixel(bmp, ix, iy); + + int r, g, b; + r = getr(col); + g = getg(col); + b = getb(col); + + double t; + if (r == 255 && g == 0 && b == 255) + { + r = 0; + g = 0; + b = 0; + } + + t = r + g + b; + + if (n == 0) + { + Iref[k] = 0; + rmap[k] = 0; + gmap[k] = 0; + bmap[k] = 0; + } + + Iref[k] += t/3; + + rmap[k] += r; + gmap[k] += g; + bmap[k] += b; + + if (n == count-1) + { + Iref[k] /= count; + rmap[k] /= 256 * count; // scaled between 0 and 1 + gmap[k] /= 256 * count; + bmap[k] /= 256 * count; + } + + ++k; + } + } + + destroy_bitmap(bmp); + } + + // visual test + BITMAP *bmp_av = create_bitmap_ex(32, b[0][0]->w, b[0][0]->h); + + // create rotated shade maps from the images in the .dat file. + k = 0; + for ( n = 0; n < count; ++n ) + { + BITMAP *bmp = bmp_rot(b[0][n], -n*PI2/count); + + BITMAP *test = create_bitmap_ex(32, bmp->w, bmp->h); + clear_to_color(test, 0); + + int m = 0; + int ix, iy; + for ( iy = 0; iy < h; ++iy ) + { + for ( ix = 0; ix < w; ++ix ) + { + //int refcol; + //refcol = getpixel(b[0][0], ix, iy); + + int newcol; + newcol = getpixel(bmp, ix, iy); + + double t1, t2; + + int r, g, b; + r = getr(newcol); + g = getg(newcol); + b = getb(newcol); + + if (r == 255 && g== 0 && b == 255) // transparent color. + { + shademap[k] = 0; + ++k; + ++m; + continue; + } + + t1 = r + g + b; + //t2 = getr(refcol) + getg(refcol) + getb(refcol); + t2 = Iref[m] * 3; + + shademap[k] = t1 / t2; + + + // for testing + int c = 150*shademap[k]; + if (c > 255) c = 255; + putpixel(test, ix, iy, makecol(c,c,c)); + + c = Iref[m]; + putpixel(bmp_av, ix, iy, makecol(c,c,c)); + // end testing + + ++k; + ++m; + } + } + + // test is disabled + if (false && showshademaps && bmp->w > 60) + { + int x = 120; + blit(b[0][0], screen, 0, 0, x,100, bmp->w, bmp->h); + x += bmp->w; + blit(bmp, screen, 0, 0, x,100, bmp->w, bmp->h); + x += bmp->w; + blit(bmp_av, screen, 0, 0, x,100, bmp->w, bmp->h); + x += bmp->w; + blit(test, screen, 0, 0, x,100, bmp->w, bmp->h); + readkey(); + } + + destroy_bitmap(bmp); + } + + destroy_bitmap(bmp_av); + + delete[] Iref; + + + /* this does not work well - it's too unstable, cause the + original data suck + // enhance shadows, cause often they're hardly visible !!!! + + double min = 1E6; + double max = 0; + for ( k = 0; k < count*w*h; ++k ) + { + if (shademap[k] > 0) + { + if (shademap[k] < min) + min = shademap[k]; + if (shademap[k] > max) + max = shademap[k]; + } + } + + if (showshademaps && w > 60) + { + int x = 1; + } + + if (max > 1) + max = 1; + + for ( k = 0; k < count*w*h; ++k ) + { + shademap[k] = (shademap[k] - min) / (max - min); + } + */ + } + + + void SpaceSprite::destroy_shademaps() + { + delete[] shademap; + } + + + //const int RotAngles = 64; // number of rotation-angles + //const int RotSize = 128; // max size of the image, should be a power of 2 ? + //int xy_rotation_table[2*RotAngles*RotSize*RotSize]; + + //bool initialized_rotations = false; + void init_rotation_table() + { + int w = RotSize / 2; + + int k = 0; + + int ia; + for (ia = 0; ia < RotAngles; ++ia) + { + double a = ia * PI2 / RotAngles; + + int ix, iy; + for ( iy = -w; iy < w; ++iy ) + { + for ( ix = -w; ix < w; ++ix ) + { + double x, y; + x = ix + 0.5; + y = iy + 0.5; + + int px, py; + px = iround( x * cos(-a) - y * sin(-a) ); + py = iround( y * cos(-a) + x * sin(-a) ); + + xy_rotation_table[k] = px; + ++k; + + xy_rotation_table[k] = py; + ++k; + } + } + } + + } + + + BITMAP *bmp_rot(BITMAP *ref, double a) + { + if (!ref) + return 0; + + while (a < 0) + a += PI2; + while (a >= PI2) + a -= PI2; + + if (!initialized_rotations) + { + initialized_rotations = true; + init_rotation_table(); + } + + int w, h; + w = ref->w; + h = ref->h; + + BITMAP *dest; + dest = create_bitmap_ex(32, w, h); + clear_to_color(dest, makecol(255,0,255)); + + + if (w > RotSize || h > RotSize) + { + blit(ref, dest, 0, 0, 0, 0, w, h); + return dest; + } + + // rotate a bitmap ... + + int ia; + ia = iround(a * 64 / PI2); + + if (ia < 0) + ia = 0; + + if (ia > RotAngles - 1) + ia = RotAngles - 1; + + int k; + k = 2 * ia*RotSize*RotSize; + + // the default rotation picture is usually too big - get the difference here. + int dx1, dy1, dx2, dy2; + dx1 = (RotSize - w) / 2; + dy1 = (RotSize - h) / 2; + dx2 = RotSize - w - dx1; + dy2 = RotSize - h - dy1; + + k += 2 * dy1 * RotSize; + + int ix, iy; + for ( iy = 0; iy < h; ++iy ) + { + k += 2 * dx1; + + for ( ix = 0; ix < w; ++ix ) + { + int px, py; + px = xy_rotation_table[k] + w/2; + ++k; + py = xy_rotation_table[k] + h/2; + ++k; + + if (px > 0 && px < w && py > 0 && py < h) + { + int col; + col = getpixel(ref, px, py); + putpixel(dest, ix, iy, col); + } + } + + k += 2 * dx2; + } + + + return dest; + } + + int tw_aa_mode = 0; void set_tw_aa_mode ( int a) { *************** *** 381,384 **** --- 818,823 ---- BITMAP *bmp, *tmp = NULL; + shademap = 0; + if (_attributes == -1) _attributes = string_to_sprite_attributes(NULL); *************** *** 520,523 **** --- 959,966 ---- } + + if (use_shademaps) + init_shademaps(); + return;//end of normal/masked/autorotated *************** *** 894,897 **** --- 1337,1342 ---- } + #include "mgame.h" + void SpaceSprite::draw(Vector2 pos, Vector2 size, int index, Frame *frame) { STACKTRACE *************** *** 906,911 **** //if (ix >= frame->frame->w) return; //if (iy >= frame->frame->h) return; int mip = find_mip_level(size.x / this->w, highest_mip); ! BITMAP *bmp = b[mip][index]; aa_set_mode(find_aa_mode(general_attributes)); if (tw_aa_mode & AA_NO_ALIGN) { --- 1351,1379 ---- //if (ix >= frame->frame->w) return; //if (iy >= frame->frame->h) return; + int mip = find_mip_level(size.x / this->w, highest_mip); ! BITMAP *bmp = 0; ! if (use_shademaps) ! { ! int mip = 0; ! ! Light light[2]; ! ! light[0].angle = 0.0;//random(PI2);//PI2 * frame_time * 1E-3; ! light[0].intensity = 0; ! ! light[1].angle = (game->game_time/10000.0) * PI2; ! light[1].intensity = 200; ! // message.print(1500, 15, "angle[%i]", int(light[1].angle * 180 / PI)); ! ! double ambient = 0.0; ! ! BITMAP *tmp = add_shades(b[mip][0], ambient, light, 2, index * PI2 / 64.0); ! bmp = bmp_rot(tmp, index*PI2/64.0 );//b[mip][index]; ! destroy_bitmap(tmp); ! } else ! bmp = b[mip][index]; ! if (!bmp) return; ! aa_set_mode(find_aa_mode(general_attributes)); if (tw_aa_mode & AA_NO_ALIGN) { *************** *** 926,929 **** --- 1394,1401 ---- } frame->add_box(ix, iy, iw, ih); + + if (use_shademaps) + destroy_bitmap(bmp); + return; } |
From: Rob <geo...@us...> - 2004-03-26 17:05:37
|
Update of /cvsroot/timewarp/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5607 Modified Files: scp.cpp Log Message: possible fix for rare fleet-edit crash Index: scp.cpp =================================================================== RCS file: /cvsroot/timewarp/source/scp.cpp,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -d -r1.67 -r1.68 *** scp.cpp 24 Mar 2004 00:30:48 -0000 1.67 --- scp.cpp 26 Mar 2004 16:54:36 -0000 1.68 *************** *** 667,670 **** --- 667,674 ---- psize = iround(20 * T->scale); FONT *usefont2 = load_ttf_font ("fonts/Jobbernole.ttf", psize, 0); + + // test: + // FONT *usefont = load_font_test (40); + // destroy_font(usefont); Button *b_accept, *b_cancel; *************** *** 736,743 **** delete T; ! // for some reason, this crashes ?! // NEED TO CHECK, WHY !! // destroy_font(usefont1); // destroy_font(usefont2); } --- 740,750 ---- delete T; ! // for some reason, this crashes if I don't take special precaution (override the kill subroutine ! // with an identical copy as that in allegro... // NEED TO CHECK, WHY !! // destroy_font(usefont1); // destroy_font(usefont2); + // color_destroy_font(usefont1); + // color_destroy_font(usefont2); } *************** *** 931,936 **** // user menu: enter adress and port number ! // if (connect_menu(&videosystem.window, &tmp, &port) == -1) ! // return; // saving address --- 938,943 ---- // user menu: enter adress and port number ! if (connect_menu(&videosystem.window, &tmp, &port) == -1) ! return; // saving address *************** *** 2512,2524 **** ret = D_USED_CHAR; static BITMAP* panel = create_bitmap(fleetDialog[FLEET_DIALOG_SHIP_PICTURE_BITMAP].w, fleetDialog[FLEET_DIALOG_SHIP_PICTURE_BITMAP].h); fleetDialog[FLEET_DIALOG_SHIP_PICTURE_BITMAP].dp = panel; static BITMAP * sprite = create_bitmap(fleetDialog[FLEET_DIALOG_SHIP_PICTURE_BITMAP].w, fleetDialog[FLEET_DIALOG_SHIP_PICTURE_BITMAP].h); static int rotationFrame = 0; ! //selection has changed if (d->d1 != old_d1) { safeToDrawPreview = false; --- 2519,2536 ---- ret = D_USED_CHAR; + // this is initialized once static BITMAP* panel = create_bitmap(fleetDialog[FLEET_DIALOG_SHIP_PICTURE_BITMAP].w, fleetDialog[FLEET_DIALOG_SHIP_PICTURE_BITMAP].h); fleetDialog[FLEET_DIALOG_SHIP_PICTURE_BITMAP].dp = panel; + // this is initialized once static BITMAP * sprite = create_bitmap(fleetDialog[FLEET_DIALOG_SHIP_PICTURE_BITMAP].w, fleetDialog[FLEET_DIALOG_SHIP_PICTURE_BITMAP].h); static int rotationFrame = 0; ! if (!sprite || !panel) ! tw_error("bitmap error"); ! ! //selection has changed if (d->d1 != old_d1) { safeToDrawPreview = false; *************** *** 2557,2560 **** --- 2569,2580 ---- if (type && type->data && type->data->spriteShip) { + rotationFrame++; + if (rotationFrame >= type->data->spriteShip->frames()) + rotationFrame = 0; + + if (rotationFrame < 0) + rotationFrame = 0; + + type->data->spriteShip->draw( Vector2(fleetDialog[FLEET_DIALOG_SHIP_PICTURE_BITMAP].w/2, *************** *** 2564,2571 **** ); - rotationFrame++; - if (rotationFrame >= type->data->spriteShip->frames()) - rotationFrame = 0; } stretch_blit(sprite, panel, 0, 0, sprite->w, sprite->h, 0, 0, panel->w, panel->h); safeToDrawPreview = true; --- 2584,2589 ---- ); } + stretch_blit(sprite, panel, 0, 0, sprite->w, sprite->h, 0, 0, panel->w, panel->h); safeToDrawPreview = true; *************** *** 2730,2733 **** --- 2748,2755 ---- ShipType *type = reference_fleet->getShipType(si); + + if (!type) + tw_error("Unrecognized ship item[%i]", si); + PACKFILE *f; //DATAFILE *d; *************** *** 2736,2739 **** --- 2758,2762 ---- destroy_bitmap(sprite); sprite = NULL; + type->data->lock(); if (type->data->spriteShip) { *************** *** 2747,2750 **** --- 2770,2776 ---- } type->data->unlock(); + + if (!sprite) + tw_error("Failed to initialize sprite"); |
From: Rob <geo...@us...> - 2004-03-26 17:04:59
|
Update of /cvsroot/timewarp/source/melee In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5369/melee Modified Files: mmain.cpp Log Message: disabled ship-file-check cause it can cause a network error Index: mmain.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mmain.cpp,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** mmain.cpp 24 Mar 2004 23:51:38 -0000 1.37 --- mmain.cpp 26 Mar 2004 16:53:59 -0000 1.38 *************** *** 809,812 **** --- 809,815 ---- ShipType *type = shiptype(id); + // THIS CAN CAUSE A CRASH, cause this is a local value !! + // this should be under direct.set ... and should be shared ... + // actually, perhaps this should be checked for all players ... if (type->data->islocked()) return; // it is already loaded, doesn't make sense to compare anymore *************** *** 878,881 **** --- 881,886 ---- pause(); + showshademaps = true; + message.out("Selecting ships...", 1000); *************** *** 956,960 **** const char *id = fleet->getShipType(slot[i])->id; ! check_file(id, i); --- 961,969 ---- const char *id = fleet->getShipType(slot[i])->id; ! ! // there's a desynch, caused by the locked() check which is a local property ! // also, it assumes 2 players, doesn't check all clients I think... ! // so, I'll just disable it for now (geo). ! // check_file(id, i); |
From: Rob <geo...@us...> - 2004-03-26 17:04:31
|
Update of /cvsroot/timewarp/source/newships In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5221/newships Modified Files: shphubde.cpp Log Message: meaningless update Index: shphubde.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shphubde.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** shphubde.cpp 24 Mar 2004 23:51:41 -0000 1.7 --- shphubde.cpp 26 Mar 2004 16:53:30 -0000 1.8 *************** *** 83,87 **** int Hellenian::activate_weapon() { ! STACKTRACE Vector2 rpos; rpos = 0; --- 83,87 ---- int Hellenian::activate_weapon() { ! STACKTRACE; Vector2 rpos; rpos = 0; *************** *** 101,105 **** { ! STACKTRACE double a, a0; --- 101,105 ---- { ! STACKTRACE; double a, a0; *************** *** 149,153 **** void HellenianShot::calculate() { ! STACKTRACE t += frame_time * 1E-3; if (t > trepeat) --- 149,153 ---- void HellenianShot::calculate() { ! STACKTRACE; t += frame_time * 1E-3; if (t > trepeat) *************** *** 192,200 **** vel = 0; v = 0; } void MortarFire::calculate() { ! STACKTRACE if (t > t_exist || !(ship && ship->exists())) { --- 192,202 ---- vel = 0; v = 0; + sprite_index = 0; + armour = 0; } void MortarFire::calculate() { ! STACKTRACE; if (t > t_exist || !(ship && ship->exists())) { *************** *** 221,226 **** void MortarFire::inflict_damage(SpaceObject *other) { ! STACKTRACE ! SpaceObject::inflict_damage(other); state = 0; } --- 223,228 ---- void MortarFire::inflict_damage(SpaceObject *other) { ! STACKTRACE; ! Shot::inflict_damage(other); state = 0; } |
From: Rob <geo...@us...> - 2004-03-26 17:03:55
|
Update of /cvsroot/timewarp/source/newships In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5158/newships Modified Files: shphydcr.cpp Log Message: hydrovar fighter fix Index: shphydcr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shphydcr.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shphydcr.cpp 24 Mar 2004 23:51:41 -0000 1.11 --- shphydcr.cpp 26 Mar 2004 16:52:55 -0000 1.12 *************** *** 290,294 **** F->numberOfShots = iround(specialNumberOfShots); if (specialFiringTakesFuel && specialFuelFull) ! F->shot_fuel_cost = iround(specialFuelFull - specialFuelCritical / specialNumberOfShots); else F->shot_fuel_cost = 0; --- 290,294 ---- F->numberOfShots = iround(specialNumberOfShots); if (specialFiringTakesFuel && specialFuelFull) ! F->shot_fuel_cost = iround((specialFuelFull - specialFuelCritical) / specialNumberOfShots); else F->shot_fuel_cost = 0; |
Update of /cvsroot/timewarp/source/newships In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/newships Modified Files: _howto_1.cpp _howto_2.cpp shpaktgu.cpp shpalabc.cpp shpalckr.cpp shpalhdr.cpp shpalhha.cpp shparitr.cpp shparkpi.cpp shpartem.cpp shpastba.cpp shpayrbs.cpp shpbahbu.cpp shpbatde.cpp shpbipka.cpp shpbogce.cpp shpbubbo.cpp shpbubex.cpp shpchoex.cpp shpclofl.cpp shpconca.cpp shpconho.cpp shpcrapl.cpp shpcresu.cpp shpcrore.cpp shpdajem.cpp shpdeees.cpp shpdjila.cpp shpdragr.cpp shpducla.cpp shpdyzha.cpp shpearc2.cpp shpearc3.cpp shpestgu.cpp shpfiear.cpp shpfopsl.cpp shpforsh.cpp shpfresc.cpp shpgahmo.cpp shpgarty.cpp shpgerhe.cpp shpgeror.cpp shpgerra.cpp shpglacr.cpp shpglads.cpp shphotsp.cpp shphubde.cpp shphydcr.cpp shpiceco.cpp shpilwsp.cpp shpilwsp.h shpimpka.cpp shpjnkla.cpp shpjurcu.cpp shpjygst.cpp shpkabwe.cpp shpkahbo.cpp shpkatas.cpp shpkatpo.cpp shpklidr.cpp shpkoaja.cpp shpkoapa.cpp shpkolfl.cpp shpktesa.cpp shpleimu.cpp shplyrwa.cpp shpmekpi.cpp shpmoisp.cpp shpmontr.cpp shpnarlu.cpp shpneccr.cpp shpneodr.cpp shpnisha.cpp shpoliha.cpp shpostdi.cpp shppanav.cpp shpphepa.cpp shpplala.cpp shpplane.cpp shpqlore.cpp shpquasi.cpp shpquawr.cpp shpraame.cpp shpradfi.cpp shprekas.cpp shprogsq.cpp shpsamat.cpp shpsclfr.cpp shpsefn2.cpp shpsefna.cpp shpstaba.cpp shpstrsc.cpp shptauar.cpp shptaubo.cpp shptauda.cpp shptauem.cpp shptaufi.cpp shptaugl.cpp shptauhu.cpp shptaule.cpp shptaumc.cpp shptaume.cpp shptausl.cpp shptaust.cpp shptauto.cpp shptautu.cpp shptelno.cpp shpterbi.cpp shptougr.cpp shptrige.cpp shptulra.cpp shpulzin.cpp shpuosli.cpp shpuxjba.cpp shpvelcr.cpp shpvenke.cpp shpvezba.cpp shpvioge.cpp shpvirli.cpp shpvuvji.cpp shpwassu.cpp shpwistr.cpp shpwolmi.cpp shpxaaar.cpp shpxilcr.cpp shpxxxas.cpp shpxxxma.cpp shpyevme.cpp shpyurpa.cpp shpyusra.cpp shpzeksh.cpp Log Message: CVS useful macros Index: shpglads.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpglads.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shpglads.cpp 29 Feb 2004 23:22:19 -0000 1.9 --- shpglads.cpp 24 Mar 2004 23:51:41 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../frame.h" Index: shpostdi.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpostdi.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shpostdi.cpp 29 Jan 2004 21:20:30 -0000 1.9 --- shpostdi.cpp 24 Mar 2004 23:51:42 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shphydcr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shphydcr.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shphydcr.cpp 29 Feb 2004 23:22:19 -0000 1.10 --- shphydcr.cpp 24 Mar 2004 23:51:41 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" Index: shpalhdr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpalhdr.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shpalhdr.cpp 13 Mar 2004 11:45:31 -0000 1.12 --- shpalhdr.cpp 24 Mar 2004 23:51:39 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shpsefna.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpsefna.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** shpsefna.cpp 29 Feb 2004 23:22:19 -0000 1.14 --- shpsefna.cpp 24 Mar 2004 23:51:42 -0000 1.15 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../frame.h" Index: shptauhu.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptauhu.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shptauhu.cpp 29 Jan 2004 21:20:30 -0000 1.9 --- shptauhu.cpp 24 Mar 2004 23:51:42 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpkatpo.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpkatpo.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** shpkatpo.cpp 29 Jan 2004 21:20:30 -0000 1.16 --- shpkatpo.cpp 24 Mar 2004 23:51:42 -0000 1.17 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shprogsq.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shprogsq.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** shprogsq.cpp 29 Feb 2004 23:22:19 -0000 1.15 --- shprogsq.cpp 24 Mar 2004 23:51:42 -0000 1.16 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpxaaar.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpxaaar.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shpxaaar.cpp 29 Jan 2004 21:20:30 -0000 1.9 --- shpxaaar.cpp 24 Mar 2004 23:51:43 -0000 1.10 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shpulzin.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpulzin.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shpulzin.cpp 29 Feb 2004 23:22:19 -0000 1.8 --- shpulzin.cpp 24 Mar 2004 23:51:42 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shptauda.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptauda.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shptauda.cpp 7 Feb 2004 07:43:38 -0000 1.10 --- shptauda.cpp 24 Mar 2004 23:51:42 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../util/aastr.h" Index: shpdyzha.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpdyzha.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shpdyzha.cpp 29 Jan 2004 21:20:29 -0000 1.11 --- shpdyzha.cpp 24 Mar 2004 23:51:41 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpvioge.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpvioge.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shpvioge.cpp 29 Jan 2004 21:20:30 -0000 1.6 --- shpvioge.cpp 24 Mar 2004 23:51:43 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpdajem.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpdajem.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shpdajem.cpp 29 Feb 2004 23:22:18 -0000 1.11 --- shpdajem.cpp 24 Mar 2004 23:51:40 -0000 1.12 *************** *** 1,3 **** ! #include "../ship.h" REGISTER_FILE --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shppanav.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shppanav.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shppanav.cpp 18 Mar 2004 23:38:39 -0000 1.9 --- shppanav.cpp 24 Mar 2004 23:51:42 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpclofl.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpclofl.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shpclofl.cpp 29 Feb 2004 23:22:18 -0000 1.12 --- shpclofl.cpp 24 Mar 2004 23:51:40 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" Index: shpoliha.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpoliha.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shpoliha.cpp 29 Feb 2004 23:22:19 -0000 1.10 --- shpoliha.cpp 24 Mar 2004 23:51:42 -0000 1.11 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shpnisha.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpnisha.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** shpnisha.cpp 29 Jan 2004 21:20:30 -0000 1.7 --- shpnisha.cpp 24 Mar 2004 23:51:42 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ Index: shpgahmo.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpgahmo.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shpgahmo.cpp 29 Feb 2004 23:22:19 -0000 1.6 --- shpgahmo.cpp 24 Mar 2004 23:51:41 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shptrige.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptrige.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shptrige.cpp 29 Feb 2004 23:22:19 -0000 1.9 --- shptrige.cpp 24 Mar 2004 23:51:42 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /********************************************************/ /* The Tridemin Gemini, based on the Ploxis */ Index: shpastba.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpastba.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** shpastba.cpp 29 Feb 2004 23:22:18 -0000 1.3 --- shpastba.cpp 24 Mar 2004 23:51:40 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <stdio.h> #include "../ship.h" Index: shpxxxma.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpxxxma.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** shpxxxma.cpp 28 Feb 2004 15:18:24 -0000 1.15 --- shpxxxma.cpp 24 Mar 2004 23:51:43 -0000 1.16 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Modified from Vivisector */ Index: shpbipka.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpbipka.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shpbipka.cpp 29 Jan 2004 21:20:29 -0000 1.12 --- shpbipka.cpp 24 Mar 2004 23:51:40 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpuxjba.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpuxjba.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shpuxjba.cpp 29 Jan 2004 21:20:30 -0000 1.6 --- shpuxjba.cpp 24 Mar 2004 23:51:42 -0000 1.7 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shptaumc.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptaumc.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shptaumc.cpp 29 Feb 2004 23:22:19 -0000 1.8 --- shptaumc.cpp 24 Mar 2004 23:51:42 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shpearc2.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpearc2.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** shpearc2.cpp 29 Jan 2004 21:20:29 -0000 1.7 --- shpearc2.cpp 24 Mar 2004 23:51:41 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpphepa.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpphepa.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** shpphepa.cpp 13 Mar 2004 11:45:32 -0000 1.17 --- shpphepa.cpp 24 Mar 2004 23:51:42 -0000 1.18 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpbubbo.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpbubbo.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** shpbubbo.cpp 29 Feb 2004 23:22:18 -0000 1.17 --- shpbubbo.cpp 24 Mar 2004 23:51:40 -0000 1.18 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shpilwsp.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpilwsp.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shpilwsp.cpp 15 Feb 2004 13:13:35 -0000 1.11 --- shpilwsp.cpp 24 Mar 2004 23:51:41 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpforsh.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpforsh.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shpforsh.cpp 29 Jan 2004 21:20:29 -0000 1.9 --- shpforsh.cpp 24 Mar 2004 23:51:41 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ //ForevianShocker lousy code by Ric...@ig... Index: shpalckr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpalckr.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shpalckr.cpp 13 Mar 2004 11:45:31 -0000 1.12 --- shpalckr.cpp 24 Mar 2004 23:51:39 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpmoisp.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpmoisp.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shpmoisp.cpp 29 Feb 2004 23:22:19 -0000 1.10 --- shpmoisp.cpp 24 Mar 2004 23:51:42 -0000 1.11 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shpqlore.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpqlore.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shpqlore.cpp 29 Feb 2004 23:22:19 -0000 1.10 --- shpqlore.cpp 24 Mar 2004 23:51:42 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpjygst.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpjygst.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** shpjygst.cpp 29 Feb 2004 23:22:19 -0000 1.13 --- shpjygst.cpp 24 Mar 2004 23:51:41 -0000 1.14 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpquawr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpquawr.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** shpquawr.cpp 29 Feb 2004 23:22:19 -0000 1.14 --- shpquawr.cpp 24 Mar 2004 23:51:42 -0000 1.15 *************** *** 1,3 **** ! #include "../ship.h" //#include "../melee/mview.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" //#include "../melee/mview.h" Index: shpglacr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpglacr.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shpglacr.cpp 29 Feb 2004 23:22:19 -0000 1.9 --- shpglacr.cpp 24 Mar 2004 23:51:41 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shptauto.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptauto.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** shptauto.cpp 29 Jan 2004 21:20:30 -0000 1.3 --- shptauto.cpp 24 Mar 2004 23:51:42 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shpyusra.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpyusra.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** shpyusra.cpp 29 Feb 2004 23:22:20 -0000 1.13 --- shpyusra.cpp 24 Mar 2004 23:51:43 -0000 1.14 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpgarty.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpgarty.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shpgarty.cpp 29 Feb 2004 23:22:19 -0000 1.11 --- shpgarty.cpp 24 Mar 2004 23:51:41 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" //#include "../melee/mview.h" Index: shpfresc.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpfresc.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shpfresc.cpp 29 Jan 2004 21:20:29 -0000 1.8 --- shpfresc.cpp 24 Mar 2004 23:51:41 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpbogce.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpbogce.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** shpbogce.cpp 29 Jan 2004 21:20:29 -0000 1.3 --- shpbogce.cpp 24 Mar 2004 23:51:40 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpdragr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpdragr.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shpdragr.cpp 21 Mar 2004 09:44:19 -0000 1.10 --- shpdragr.cpp 24 Mar 2004 23:51:40 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <assert.h> #include "../ship.h" Index: shpxilcr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpxilcr.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** shpxilcr.cpp 29 Feb 2004 23:22:20 -0000 1.13 --- shpxilcr.cpp 24 Mar 2004 23:51:43 -0000 1.14 *************** *** 1,3 **** ! /* I used some code from the Orz Nemesis for this ship: for the turret --- 1,3 ---- ! /* $Id$ */ /* I used some code from the Orz Nemesis for this ship: for the turret Index: shpfopsl.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpfopsl.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** shpfopsl.cpp 29 Jan 2004 21:20:29 -0000 1.7 --- shpfopsl.cpp 24 Mar 2004 23:51:41 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpwassu.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpwassu.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** shpwassu.cpp 15 Mar 2004 22:20:32 -0000 1.16 --- shpwassu.cpp 24 Mar 2004 23:51:43 -0000 1.17 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* sorry for the tons of tests... dunno where to insert checks/validations */ Index: shpalabc.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpalabc.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** shpalabc.cpp 13 Mar 2004 11:45:31 -0000 1.16 --- shpalabc.cpp 24 Mar 2004 23:51:39 -0000 1.17 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpartem.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpartem.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shpartem.cpp 13 Mar 2004 11:45:32 -0000 1.11 --- shpartem.cpp 24 Mar 2004 23:51:40 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shpbubex.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpbubex.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shpbubex.cpp 29 Jan 2004 21:20:29 -0000 1.9 --- shpbubex.cpp 24 Mar 2004 23:51:40 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Modified from Xchagger */ Index: shpyevme.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpyevme.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** shpyevme.cpp 7 Feb 2004 07:43:38 -0000 1.15 --- shpyevme.cpp 24 Mar 2004 23:51:43 -0000 1.16 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shpbatde.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpbatde.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** shpbatde.cpp 29 Feb 2004 23:22:18 -0000 1.17 --- shpbatde.cpp 24 Mar 2004 23:51:40 -0000 1.18 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpstrsc.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpstrsc.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shpstrsc.cpp 3 Mar 2004 21:19:50 -0000 1.11 --- shpstrsc.cpp 24 Mar 2004 23:51:42 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /************************************************/ /* Modified from Earthling Cruiser */ Index: shptauem.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptauem.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shptauem.cpp 29 Feb 2004 23:22:19 -0000 1.12 --- shptauem.cpp 24 Mar 2004 23:51:42 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../util/aastr.h" Index: shpquasi.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpquasi.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shpquasi.cpp 29 Jan 2004 21:20:30 -0000 1.12 --- shpquasi.cpp 24 Mar 2004 23:51:42 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpmontr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpmontr.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shpmontr.cpp 29 Jan 2004 21:20:30 -0000 1.8 --- shpmontr.cpp 24 Mar 2004 23:51:42 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: _howto_1.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/_howto_1.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _howto_1.cpp 13 Mar 2004 11:45:31 -0000 1.2 --- _howto_1.cpp 24 Mar 2004 23:51:39 -0000 1.3 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shpuosli.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpuosli.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shpuosli.cpp 29 Feb 2004 23:22:20 -0000 1.10 --- shpuosli.cpp 24 Mar 2004 23:51:42 -0000 1.11 *************** *** 1,3 **** ! /* I used some code from the Orz Nemesis for this ship: for the turret --- 1,3 ---- ! /* $Id$ */ /* I used some code from the Orz Nemesis for this ship: for the turret Index: shphotsp.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shphotsp.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shphotsp.cpp 29 Jan 2004 21:20:29 -0000 1.11 --- shphotsp.cpp 24 Mar 2004 23:51:41 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shptautu.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptautu.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shptautu.cpp 29 Feb 2004 23:22:19 -0000 1.8 --- shptautu.cpp 24 Mar 2004 23:51:42 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shptaume.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptaume.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shptaume.cpp 29 Feb 2004 23:22:19 -0000 1.12 --- shptaume.cpp 24 Mar 2004 23:51:42 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shpdjila.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpdjila.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shpdjila.cpp 29 Jan 2004 21:20:29 -0000 1.8 --- shpdjila.cpp 24 Mar 2004 23:51:40 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Yet another cobbled-together ship from spare parts of other ships: Index: shpcresu.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpcresu.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shpcresu.cpp 29 Jan 2004 21:20:29 -0000 1.9 --- shpcresu.cpp 24 Mar 2004 23:51:40 -0000 1.10 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shparitr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shparitr.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** shparitr.cpp 13 Mar 2004 11:45:31 -0000 1.13 --- shparitr.cpp 24 Mar 2004 23:51:39 -0000 1.14 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /********************************************please leave this comment tag in** ******************************************************************************* Index: shpvenke.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpvenke.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shpvenke.cpp 7 Feb 2004 07:43:38 -0000 1.11 --- shpvenke.cpp 24 Mar 2004 23:51:43 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shptulra.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptulra.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** shptulra.cpp 29 Feb 2004 23:22:19 -0000 1.13 --- shptulra.cpp 24 Mar 2004 23:51:42 -0000 1.14 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpkoapa.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpkoapa.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shpkoapa.cpp 29 Feb 2004 23:22:19 -0000 1.8 --- shpkoapa.cpp 24 Mar 2004 23:51:42 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpmekpi.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpmekpi.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** shpmekpi.cpp 29 Jan 2004 21:20:30 -0000 1.13 --- shpmekpi.cpp 24 Mar 2004 23:51:42 -0000 1.14 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shptausl.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptausl.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** shptausl.cpp 29 Feb 2004 23:22:19 -0000 1.4 --- shptausl.cpp 24 Mar 2004 23:51:42 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpgerra.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpgerra.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** shpgerra.cpp 29 Feb 2004 23:22:19 -0000 1.3 --- shpgerra.cpp 24 Mar 2004 23:51:41 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shpilwsp.h =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpilwsp.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** shpilwsp.h 16 Feb 2004 17:11:14 -0000 1.1 --- shpilwsp.h 24 Mar 2004 23:51:41 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __ILWSP__ #define __ILWSP__ Index: shpfiear.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpfiear.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shpfiear.cpp 29 Feb 2004 23:22:19 -0000 1.10 --- shpfiear.cpp 24 Mar 2004 23:51:41 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../frame.h" Index: shpcrore.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpcrore.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** shpcrore.cpp 17 Mar 2004 22:27:37 -0000 1.4 --- shpcrore.cpp 24 Mar 2004 23:51:40 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" Index: shpkabwe.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpkabwe.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** shpkabwe.cpp 29 Feb 2004 23:22:19 -0000 1.13 --- shpkabwe.cpp 24 Mar 2004 23:51:41 -0000 1.14 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpnarlu.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpnarlu.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** shpnarlu.cpp 29 Feb 2004 23:22:19 -0000 1.13 --- shpnarlu.cpp 24 Mar 2004 23:51:42 -0000 1.14 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shptaufi.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptaufi.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** shptaufi.cpp 29 Jan 2004 21:20:30 -0000 1.3 --- shptaufi.cpp 24 Mar 2004 23:51:42 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shptaule.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptaule.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** shptaule.cpp 1 Mar 2004 23:21:50 -0000 1.14 --- shptaule.cpp 24 Mar 2004 23:51:42 -0000 1.15 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" Index: shpvelcr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpvelcr.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shpvelcr.cpp 29 Feb 2004 23:22:20 -0000 1.8 --- shpvelcr.cpp 24 Mar 2004 23:51:42 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpraame.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpraame.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** shpraame.cpp 29 Feb 2004 23:22:19 -0000 1.15 --- shpraame.cpp 24 Mar 2004 23:51:42 -0000 1.16 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../util/aastr.h" Index: shpstaba.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpstaba.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** shpstaba.cpp 29 Jan 2004 21:20:30 -0000 1.7 --- shpstaba.cpp 24 Mar 2004 23:51:42 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpterbi.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpterbi.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shpterbi.cpp 12 Mar 2004 20:15:00 -0000 1.6 --- shpterbi.cpp 24 Mar 2004 23:51:42 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpkolfl.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpkolfl.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shpkolfl.cpp 29 Feb 2004 23:22:19 -0000 1.11 --- shpkolfl.cpp 24 Mar 2004 23:51:42 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpsclfr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpsclfr.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shpsclfr.cpp 29 Feb 2004 23:22:19 -0000 1.9 --- shpsclfr.cpp 24 Mar 2004 23:51:42 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shpayrbs.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpayrbs.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** shpayrbs.cpp 14 Feb 2004 13:18:38 -0000 1.19 --- shpayrbs.cpp 24 Mar 2004 23:51:40 -0000 1.20 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shpestgu.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpestgu.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shpestgu.cpp 29 Jan 2004 21:20:29 -0000 1.12 --- shpestgu.cpp 24 Mar 2004 23:51:41 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpyurpa.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpyurpa.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** shpyurpa.cpp 29 Jan 2004 21:20:30 -0000 1.13 --- shpyurpa.cpp 24 Mar 2004 23:51:43 -0000 1.14 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpimpka.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpimpka.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shpimpka.cpp 29 Feb 2004 23:22:19 -0000 1.12 --- shpimpka.cpp 24 Mar 2004 23:51:41 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpkoaja.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpkoaja.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** shpkoaja.cpp 29 Jan 2004 21:20:30 -0000 1.5 --- shpkoaja.cpp 24 Mar 2004 23:51:42 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpducla.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpducla.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** shpducla.cpp 29 Jan 2004 21:20:29 -0000 1.13 --- shpducla.cpp 24 Mar 2004 23:51:40 -0000 1.14 *************** *** 1,3 **** ! /* Ducly Lanternjaws --- 1,3 ---- ! /* $Id$ */ /* Ducly Lanternjaws Index: shptelno.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptelno.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shptelno.cpp 29 Feb 2004 23:22:19 -0000 1.9 --- shptelno.cpp 24 Mar 2004 23:51:42 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ Index: shpiceco.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpiceco.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shpiceco.cpp 29 Feb 2004 23:22:19 -0000 1.11 --- shpiceco.cpp 24 Mar 2004 23:51:41 -0000 1.12 *************** *** 1,3 **** ! /* This is a variation on the Xchagger exclave, to see if the confusion --- 1,3 ---- ! /* $Id$ */ /* This is a variation on the Xchagger exclave, to see if the confusion Index: shpplala.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpplala.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** shpplala.cpp 15 Mar 2004 22:20:32 -0000 1.4 --- shpplala.cpp 24 Mar 2004 23:51:42 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* todo: (in order) modify ship panel. Index: shpleimu.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpleimu.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shpleimu.cpp 29 Jan 2004 21:20:30 -0000 1.8 --- shpleimu.cpp 24 Mar 2004 23:51:42 -0000 1.9 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shpaktgu.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpaktgu.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shpaktgu.cpp 19 Mar 2004 20:18:20 -0000 1.6 --- shpaktgu.cpp 24 Mar 2004 23:51:39 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mshot.h" Index: _howto_2.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/_howto_2.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _howto_2.cpp 13 Mar 2004 11:45:31 -0000 1.3 --- _howto_2.cpp 24 Mar 2004 23:51:39 -0000 1.4 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shptougr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptougr.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** shptougr.cpp 29 Jan 2004 21:20:30 -0000 1.7 --- shptougr.cpp 24 Mar 2004 23:51:42 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ Index: shparkpi.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shparkpi.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shparkpi.cpp 13 Mar 2004 11:45:31 -0000 1.12 --- shparkpi.cpp 24 Mar 2004 23:51:39 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shpvirli.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpvirli.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** shpvirli.cpp 29 Jan 2004 21:20:30 -0000 1.7 --- shpvirli.cpp 24 Mar 2004 23:51:43 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpjurcu.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpjurcu.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** shpjurcu.cpp 29 Jan 2004 21:20:30 -0000 1.3 --- shpjurcu.cpp 24 Mar 2004 23:51:41 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" Index: shpvezba.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpvezba.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shpvezba.cpp 29 Feb 2004 23:22:20 -0000 1.12 --- shpvezba.cpp 24 Mar 2004 23:51:43 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shprekas.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shprekas.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shprekas.cpp 29 Feb 2004 23:22:19 -0000 1.10 --- shprekas.cpp 24 Mar 2004 23:51:42 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shptaugl.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptaugl.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shptaugl.cpp 29 Feb 2004 23:22:19 -0000 1.9 --- shptaugl.cpp 24 Mar 2004 23:51:42 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" Index: shpwistr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpwistr.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shpwistr.cpp 4 Mar 2004 15:42:09 -0000 1.11 --- shpwistr.cpp 24 Mar 2004 23:51:43 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Index: shpsefn2.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpsefn2.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** shpsefn2.cpp 18 Mar 2004 01:51:00 -0000 1.5 --- shpsefn2.cpp 24 Mar 2004 23:51:42 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../frame.h" Index: shpconca.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpconca.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** shpconca.cpp 29 Feb 2004 23:22:18 -0000 1.14 --- shpconca.cpp 24 Mar 2004 23:51:40 -0000 1.15 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <stdio.h> #include "../ship.h" Index: shpkahbo.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpkahbo.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shpkahbo.cpp 29 Jan 2004 21:20:30 -0000 1.10 --- shpkahbo.cpp 24 Mar 2004 23:51:41 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpconho.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpconho.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shpconho.cpp 29 Jan 2004 21:20:29 -0000 1.10 --- shpconho.cpp 24 Mar 2004 23:51:40 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpvuvji.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpvuvji.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** shpvuvji.cpp 29 Feb 2004 23:22:20 -0000 1.4 --- shpvuvji.cpp 24 Mar 2004 23:51:43 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpearc3.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpearc3.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** shpearc3.cpp 29 Jan 2004 21:20:29 -0000 1.13 --- shpearc3.cpp 24 Mar 2004 23:51:41 -0000 1.14 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../util/aastr.h" Index: shptaubo.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptaubo.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shptaubo.cpp 15 Mar 2004 22:20:32 -0000 1.12 --- shptaubo.cpp 24 Mar 2004 23:51:42 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <assert.h> #include "../ship.h" Index: shpcrapl.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpcrapl.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** shpcrapl.cpp 29 Jan 2004 21:20:29 -0000 1.7 --- shpcrapl.cpp 24 Mar 2004 23:51:40 -0000 1.8 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shptauar.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptauar.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** shptauar.cpp 29 Feb 2004 23:22:19 -0000 1.14 --- shptauar.cpp 24 Mar 2004 23:51:42 -0000 1.15 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ // Modifed by Jad: Changed at *Jumping Peppers*'s request to make this a Behemoth // so non-standard things were removed (IE: non-standard batt regen, and crew colors) Index: shpwolmi.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpwolmi.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** shpwolmi.cpp 29 Jan 2004 21:20:30 -0000 1.3 --- shpwolmi.cpp 24 Mar 2004 23:51:43 -0000 1.4 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shpsamat.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpsamat.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** shpsamat.cpp 29 Feb 2004 23:22:19 -0000 1.16 --- shpsamat.cpp 24 Mar 2004 23:51:42 -0000 1.17 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" Index: shpzeksh.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpzeksh.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** shpzeksh.cpp 29 Jan 2004 21:20:30 -0000 1.7 --- shpzeksh.cpp 24 Mar 2004 23:51:43 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ //ZekfahanShocker lousy code by Ric...@ig... Index: shpneodr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpneodr.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shpneodr.cpp 29 Feb 2004 23:22:19 -0000 1.10 --- shpneodr.cpp 24 Mar 2004 23:51:42 -0000 1.11 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shpgeror.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpgeror.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** shpgeror.cpp 29 Feb 2004 23:22:19 -0000 1.3 --- shpgeror.cpp 24 Mar 2004 23:51:41 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shpbahbu.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpbahbu.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** shpbahbu.cpp 29 Feb 2004 23:22:18 -0000 1.4 --- shpbahbu.cpp 24 Mar 2004 23:51:40 -0000 1.5 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shpalhha.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpalhha.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** shpalhha.cpp 13 Mar 2004 11:45:31 -0000 1.3 --- shpalhha.cpp 24 Mar 2004 23:51:39 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mview.h" Index: shpktesa.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpktesa.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shpktesa.cpp 29 Feb 2004 23:22:19 -0000 1.8 --- shpktesa.cpp 24 Mar 2004 23:51:42 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpjnkla.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpjnkla.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** shpjnkla.cpp 15 Mar 2004 22:20:32 -0000 1.14 --- shpjnkla.cpp 24 Mar 2004 23:51:41 -0000 1.15 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpradfi.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpradfi.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shpradfi.cpp 29 Jan 2004 21:20:30 -0000 1.6 --- shpradfi.cpp 24 Mar 2004 23:51:42 -0000 1.7 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shphubde.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shphubde.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shphubde.cpp 29 Jan 2004 21:20:29 -0000 1.6 --- shphubde.cpp 24 Mar 2004 23:51:41 -0000 1.7 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: shplyrwa.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shplyrwa.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shplyrwa.cpp 29 Feb 2004 23:22:19 -0000 1.12 --- shplyrwa.cpp 24 Mar 2004 23:51:42 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shptaust.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shptaust.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shptaust.cpp 29 Feb 2004 23:22:19 -0000 1.8 --- shptaust.cpp 24 Mar 2004 23:51:42 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" Index: shpxxxas.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpxxxas.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shpxxxas.cpp 29 Feb 2004 23:22:20 -0000 1.12 --- shpxxxas.cpp 24 Mar 2004 23:51:43 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" Index: shpdeees.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpdeees.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** shpdeees.cpp 29 Feb 2004 23:22:19 -0000 1.4 --- shpdeees.cpp 24 Mar 2004 23:51:40 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpgerhe.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpgerhe.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** shpgerhe.cpp 29 Feb 2004 23:22:19 -0000 1.17 --- shpgerhe.cpp 24 Mar 2004 23:51:41 -0000 1.18 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpklidr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpklidr.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shpklidr.cpp 29 Feb 2004 23:22:19 -0000 1.8 --- shpklidr.cpp 24 Mar 2004 23:51:42 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpneccr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpneccr.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shpneccr.cpp 29 Feb 2004 23:22:19 -0000 1.12 --- shpneccr.cpp 24 Mar 2004 23:51:42 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpplane.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpplane.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shpplane.cpp 29 Jan 2004 21:20:30 -0000 1.10 --- shpplane.cpp 24 Mar 2004 23:51:42 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mship.h" Index: shpchoex.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpchoex.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shpchoex.cpp 21 Feb 2004 00:29:19 -0000 1.11 --- shpchoex.cpp 24 Mar 2004 23:51:40 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" #include "../melee/mcbodies.h" Index: shpkatas.cpp =================================================================== RCS file: /cvsroot/timewarp/source/newships/shpkatas.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shpkatas.cpp 29 Jan 2004 21:20:30 -0000 1.10 --- shpkatas.cpp 24 Mar 2004 23:51:42 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE |
Update of /cvsroot/timewarp/source/melee In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/melee Modified Files: manim.cpp manim.h mcbodies.cpp mcbodies.h mcontrol.cpp mcontrol.h mfleet.cpp mfleet.h mframe.cpp mframe.h mgame.cpp mgame.h mhelpers.cpp mitems.cpp mitems.h mlog.cpp mlog.h mmain.cpp mmain.h mmath.cpp mnet1.cpp mnet1.h moptions.cpp mship.cpp mship.h mshot.cpp mshot.h mshpdata.cpp mshppan.cpp mshppan.h msprite.cpp mtarget.cpp mtarget.h mview.cpp mview.h Log Message: CVS useful macros Index: mshpdata.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mshpdata.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** mshpdata.cpp 17 Mar 2004 22:27:37 -0000 1.8 --- mshpdata.cpp 24 Mar 2004 23:51:39 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * Star Control - TimeWarp Index: mcontrol.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mcontrol.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** mcontrol.h 18 Mar 2004 23:38:38 -0000 1.10 --- mcontrol.h 24 Mar 2004 23:51:37 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __MCONTROL_H__ #define __MCONTROL_H__ Index: mframe.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mframe.h,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** mframe.h 24 Mar 2004 00:30:48 -0000 1.20 --- mframe.h 24 Mar 2004 23:51:37 -0000 1.21 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __MFRAME_H__ #define __MFRAME_H__ Index: mship.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mship.h,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** mship.h 2 Mar 2004 12:33:51 -0000 1.20 --- mship.h 24 Mar 2004 23:51:38 -0000 1.21 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __MSHIP_H__ #define __MSHIP_H__ Index: mshppan.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mshppan.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** mshppan.cpp 29 Feb 2004 23:22:17 -0000 1.18 --- mshppan.cpp 24 Mar 2004 23:51:39 -0000 1.19 *************** *** 1,3 **** ! #include <allegro.h> --- 1,3 ---- ! /* $Id$ */ #include <allegro.h> Index: mfleet.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mfleet.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** mfleet.cpp 17 Mar 2004 22:27:37 -0000 1.24 --- mfleet.cpp 24 Mar 2004 23:51:37 -0000 1.25 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * Star Control - TimeWarp Index: mmain.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mmain.cpp,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** mmain.cpp 19 Mar 2004 20:18:19 -0000 1.36 --- mmain.cpp 24 Mar 2004 23:51:38 -0000 1.37 *************** *** 1,3 **** ! #include <stdlib.h> #include <string.h> --- 1,3 ---- ! /* $Id$ */ #include <stdlib.h> #include <string.h> Index: mitems.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mitems.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** mitems.cpp 29 Jan 2004 21:20:29 -0000 1.7 --- mitems.cpp 24 Mar 2004 23:51:38 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include "../melee.h" Index: mtarget.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mtarget.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mtarget.h 10 Jan 2004 22:27:59 -0000 1.2 --- mtarget.h 24 Mar 2004 23:51:39 -0000 1.3 *************** *** 1,3 **** ! #ifndef __MTARGET_H__ #define __MTARGET_H__ --- 1,3 ---- ! /* $Id$ */ #ifndef __MTARGET_H__ #define __MTARGET_H__ Index: mshppan.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mshppan.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** mshppan.h 29 Jan 2004 21:20:29 -0000 1.9 --- mshppan.h 24 Mar 2004 23:51:39 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __MSHPPAN_H__ #define __MSHPPAN_H__ Index: manim.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/manim.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** manim.h 10 Jan 2004 22:27:59 -0000 1.4 --- manim.h 24 Mar 2004 23:51:37 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __MANIM_H__ #define __MANIM_H__ Index: msprite.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/msprite.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** msprite.cpp 12 Mar 2004 20:14:59 -0000 1.16 --- msprite.cpp 24 Mar 2004 23:51:39 -0000 1.17 *************** *** 1,3 **** ! #include <allegro.h> --- 1,3 ---- ! /* $Id$ */ #include <allegro.h> Index: mshot.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mshot.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** mshot.cpp 13 Mar 2004 11:45:31 -0000 1.15 --- mshot.cpp 24 Mar 2004 23:51:38 -0000 1.16 *************** *** 1,3 **** ! #include <allegro.h> --- 1,3 ---- ! /* $Id$ */ #include <allegro.h> Index: manim.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/manim.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** manim.cpp 5 Mar 2004 17:51:28 -0000 1.9 --- manim.cpp 24 Mar 2004 23:51:37 -0000 1.10 *************** *** 1,3 **** ! #include "../melee.h" REGISTER_FILE --- 1,3 ---- ! /* $Id$ */ #include "../melee.h" REGISTER_FILE Index: mshot.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mshot.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** mshot.h 13 Mar 2004 11:45:31 -0000 1.5 --- mshot.h 24 Mar 2004 23:51:39 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __MSHOT_H__ #define __MSHOT_H__ Index: mlog.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mlog.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** mlog.h 18 Mar 2004 20:38:20 -0000 1.9 --- mlog.h 24 Mar 2004 23:51:38 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __MLOG_H__ #define __MLOG_H__ Index: moptions.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/moptions.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** moptions.cpp 12 Mar 2004 20:14:59 -0000 1.15 --- moptions.cpp 24 Mar 2004 23:51:38 -0000 1.16 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <stdlib.h> Index: mgame.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mgame.cpp,v retrieving revision 1.44 retrieving revision 1.45 diff -C2 -d -r1.44 -r1.45 *** mgame.cpp 20 Mar 2004 19:54:08 -0000 1.44 --- mgame.cpp 24 Mar 2004 23:51:37 -0000 1.45 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * Star Control - TimeWarp Index: mlog.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mlog.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** mlog.cpp 18 Mar 2004 16:03:27 -0000 1.16 --- mlog.cpp 24 Mar 2004 23:51:38 -0000 1.17 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <stdio.h> #include <string.h> Index: mfleet.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mfleet.h,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** mfleet.h 29 Feb 2004 23:22:17 -0000 1.17 --- mfleet.h 24 Mar 2004 23:51:37 -0000 1.18 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __MFLEET_H__ #define __MFLEET_H__ Index: mcbodies.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mcbodies.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** mcbodies.h 5 Mar 2004 17:51:28 -0000 1.8 --- mcbodies.h 24 Mar 2004 23:51:37 -0000 1.9 *************** *** 1,3 **** ! #ifndef __MCBODIES_H__ #define __MCBODIES_H__ --- 1,3 ---- ! /* $Id$ */ #ifndef __MCBODIES_H__ #define __MCBODIES_H__ Index: mgame.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mgame.h,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** mgame.h 20 Mar 2004 18:45:09 -0000 1.18 --- mgame.h 24 Mar 2004 23:51:38 -0000 1.19 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __MGAME_H__ #define __MGAME_H__ Index: mnet1.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mnet1.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** mnet1.cpp 18 Mar 2004 16:03:27 -0000 1.14 --- mnet1.cpp 24 Mar 2004 23:51:38 -0000 1.15 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <stdlib.h> #include <stdio.h> Index: mview.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mview.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** mview.h 28 Feb 2004 01:05:50 -0000 1.7 --- mview.h 24 Mar 2004 23:51:39 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __MVIEW_H__ #define __MVIEW_H__ Index: mtarget.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mtarget.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mtarget.cpp 22 Dec 2003 10:29:44 -0000 1.1 --- mtarget.cpp 24 Mar 2004 23:51:39 -0000 1.2 *************** *** 1,3 **** ! #include "mtarget.h" --- 1,3 ---- ! /* $Id$ */ #include "mtarget.h" Index: mcontrol.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mcontrol.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** mcontrol.cpp 18 Mar 2004 23:38:38 -0000 1.20 --- mcontrol.cpp 24 Mar 2004 23:51:37 -0000 1.21 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <string.h> #include <stdio.h> Index: mcbodies.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mcbodies.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** mcbodies.cpp 17 Mar 2004 22:27:37 -0000 1.11 --- mcbodies.cpp 24 Mar 2004 23:51:37 -0000 1.12 *************** *** 1,3 **** ! #include <allegro.h> #include <string.h> --- 1,3 ---- ! /* $Id$ */ #include <allegro.h> #include <string.h> Index: mnet1.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mnet1.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** mnet1.h 18 Mar 2004 16:03:27 -0000 1.10 --- mnet1.h 24 Mar 2004 23:51:38 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __MNET1_H__ #define __MNET1_H__ Index: mship.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mship.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** mship.cpp 17 Mar 2004 22:27:37 -0000 1.29 --- mship.cpp 24 Mar 2004 23:51:38 -0000 1.30 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * Star Control - TimeWarp Index: mitems.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mitems.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** mitems.h 29 Jan 2004 21:20:29 -0000 1.4 --- mitems.h 24 Mar 2004 23:51:38 -0000 1.5 *************** *** 1,3 **** ! class HealthBar : public Presence { --- 1,3 ---- ! /* $Id$ */ class HealthBar : public Presence { Index: mview.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mview.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** mview.cpp 4 Mar 2004 16:13:36 -0000 1.19 --- mview.cpp 24 Mar 2004 23:51:39 -0000 1.20 *************** *** 1,3 **** ! #include <string.h> #include <stdio.h> --- 1,3 ---- ! /* $Id$ */ #include <string.h> #include <stdio.h> Index: mframe.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mframe.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** mframe.cpp 24 Mar 2004 00:30:48 -0000 1.29 --- mframe.cpp 24 Mar 2004 23:51:37 -0000 1.30 *************** *** 1,3 **** ! //#include <allegro.h> #include <string.h> --- 1,3 ---- ! /* $Id$ */ //#include <allegro.h> #include <string.h> Index: mmain.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mmain.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** mmain.h 18 Mar 2004 20:38:20 -0000 1.15 --- mmain.h 24 Mar 2004 23:51:38 -0000 1.16 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __MMAIN_H__ #define __MMAIN_H__ Index: mhelpers.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mhelpers.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** mhelpers.cpp 25 Feb 2004 00:20:02 -0000 1.7 --- mhelpers.cpp 24 Mar 2004 23:51:38 -0000 1.8 *************** *** 1,3 **** ! #include <stdio.h> #include <string.h> --- 1,3 ---- ! /* $Id$ */ #include <stdio.h> #include <string.h> Index: mmath.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mmath.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** mmath.cpp 29 Jan 2004 21:20:29 -0000 1.7 --- mmath.cpp 24 Mar 2004 23:51:38 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ //#include <float.h> |
Update of /cvsroot/timewarp/source/gamex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/gamex Modified Files: ai_fleet.cpp ai_fleet.h ai_race.cpp ai_race.h gamedata.cpp gamedata.h gamedata_map.cpp gamedata_map.h gamedialogue.cpp gamedialogue.h gamegeneral.cpp gamegeneral.h gamehyper.cpp gamehyper.h gamemelee.cpp gamemelee.h gameplanetmission.cpp gameplanetmission.h gameplanetscan.cpp gameplanetscan.h gameplanetview.cpp gameplanetview.h gameproject.cpp gameproject.h gamesolarview.cpp gamesolarview.h gamestarmap.cpp gamestarmap.h projectx.cpp projectx.h Log Message: CVS useful macros Index: gameproject.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gameproject.h,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** gameproject.h 22 Feb 2004 10:49:38 -0000 1.12 --- gameproject.h 24 Mar 2004 23:51:36 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAME_PROJECT__ #define __GAME_PROJECT__ Index: projectx.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/projectx.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** projectx.cpp 28 Feb 2004 15:18:24 -0000 1.20 --- projectx.cpp 24 Mar 2004 23:51:36 -0000 1.21 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: ai_race.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/ai_race.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ai_race.h 10 Jan 2004 22:27:58 -0000 1.2 --- ai_race.h 24 Mar 2004 23:51:36 -0000 1.3 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEX_FLEETAI__ #define __GAMEX_FLEETAI__ Index: gamehyper.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamehyper.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** gamehyper.cpp 19 Mar 2004 18:13:33 -0000 1.13 --- gamehyper.cpp 24 Mar 2004 23:51:36 -0000 1.14 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: projectx.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/projectx.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** projectx.h 24 Feb 2004 23:25:20 -0000 1.3 --- projectx.h 24 Mar 2004 23:51:36 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAME_MAIN__ #define __GAME_MAIN__ Index: gamestarmap.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamestarmap.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** gamestarmap.cpp 29 Feb 2004 23:22:17 -0000 1.12 --- gamestarmap.cpp 24 Mar 2004 23:51:36 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: gameproject.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gameproject.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** gameproject.cpp 29 Feb 2004 00:37:38 -0000 1.12 --- gameproject.cpp 24 Mar 2004 23:51:36 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: gameplanetview.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gameplanetview.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** gameplanetview.cpp 29 Feb 2004 23:22:17 -0000 1.17 --- gameplanetview.cpp 24 Mar 2004 23:51:36 -0000 1.18 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: gameplanetmission.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gameplanetmission.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** gameplanetmission.cpp 13 Jan 2004 01:15:22 -0000 1.3 --- gameplanetmission.cpp 24 Mar 2004 23:51:36 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifdef NOTDEFINED Index: gamemelee.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamemelee.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** gamemelee.h 22 Feb 2004 10:49:38 -0000 1.8 --- gamemelee.h 24 Mar 2004 23:51:36 -0000 1.9 *************** *** 1,3 **** ! #ifndef __GAMEX_MELEE__ #define __GAMEX_MELEE__ --- 1,3 ---- ! /* $Id$ */ #ifndef __GAMEX_MELEE__ #define __GAMEX_MELEE__ Index: gamedata.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamedata.cpp,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** gamedata.cpp 19 Mar 2004 18:13:33 -0000 1.21 --- gamedata.cpp 24 Mar 2004 23:51:36 -0000 1.22 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: ai_race.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/ai_race.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ai_race.cpp 29 Jan 2004 21:20:28 -0000 1.3 --- ai_race.cpp 24 Mar 2004 23:51:36 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: gamedata.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamedata.h,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** gamedata.h 18 Mar 2004 20:54:59 -0000 1.17 --- gamedata.h 24 Mar 2004 23:51:36 -0000 1.18 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEX_DATA__ #define __GAMEX_DATA__ Index: gamegeneral.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamegeneral.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** gamegeneral.cpp 18 Mar 2004 21:00:10 -0000 1.17 --- gamegeneral.cpp 24 Mar 2004 23:51:36 -0000 1.18 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: gameplanetmission.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gameplanetmission.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** gameplanetmission.h 13 Jan 2004 01:15:22 -0000 1.3 --- gameplanetmission.h 24 Mar 2004 23:51:36 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifdef NOTDEFINED Index: gamehyper.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamehyper.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** gamehyper.h 22 Feb 2004 10:49:38 -0000 1.8 --- gamehyper.h 24 Mar 2004 23:51:36 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEX_HYPER__ #define __GAMEX_HYPER__ Index: gamesolarview.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamesolarview.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** gamesolarview.cpp 18 Mar 2004 20:54:59 -0000 1.17 --- gamesolarview.cpp 24 Mar 2004 23:51:36 -0000 1.18 *************** *** 1,3 **** ! #include <allegro.h> #include <stdio.h> --- 1,3 ---- ! /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: gamedialogue.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamedialogue.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** gamedialogue.cpp 28 Feb 2004 15:18:24 -0000 1.13 --- gamedialogue.cpp 24 Mar 2004 23:51:36 -0000 1.14 *************** *** 1,3 **** ! #include <allegro.h> --- 1,3 ---- ! /* $Id$ */ #include <allegro.h> Index: gamestarmap.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamestarmap.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** gamestarmap.h 22 Feb 2004 10:49:38 -0000 1.11 --- gamestarmap.h 24 Mar 2004 23:51:36 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEX_STARMAP__ #define __GAMEX_STARMAP__ Index: gameplanetscan.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gameplanetscan.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** gameplanetscan.cpp 15 Mar 2004 22:20:15 -0000 1.14 --- gameplanetscan.cpp 24 Mar 2004 23:51:36 -0000 1.15 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: gamesolarview.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamesolarview.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** gamesolarview.h 22 Feb 2004 10:49:38 -0000 1.11 --- gamesolarview.h 24 Mar 2004 23:51:36 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEX_SOLAR_VIEW__ #define __GAMEX_SOLAR_VIEW__ Index: gamedata_map.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamedata_map.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** gamedata_map.cpp 12 Mar 2004 20:14:58 -0000 1.5 --- gamedata_map.cpp 24 Mar 2004 23:51:36 -0000 1.6 *************** *** 1,3 **** ! #include <allegro.h> #include <stdio.h> --- 1,3 ---- ! /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: gamemelee.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamemelee.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** gamemelee.cpp 28 Feb 2004 01:05:49 -0000 1.10 --- gamemelee.cpp 24 Mar 2004 23:51:36 -0000 1.11 *************** *** 1,3 **** ! // basic melee type, less complicated than "normal" melee is needed I think... --- 1,3 ---- ! /* $Id$ */ // basic melee type, less complicated than "normal" melee is needed I think... Index: ai_fleet.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/ai_fleet.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ai_fleet.h 21 Feb 2004 00:29:16 -0000 1.6 --- ai_fleet.h 24 Mar 2004 23:51:36 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEX_FLEETAI__ #define __GAMEX_FLEETAI__ Index: gamedata_map.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamedata_map.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** gamedata_map.h 29 Jan 2004 21:20:28 -0000 1.3 --- gamedata_map.h 24 Mar 2004 23:51:36 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEX_DATA_MAP__ #define __GAMEX_DATA_MAP__ Index: gamedialogue.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamedialogue.h,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** gamedialogue.h 29 Feb 2004 23:22:17 -0000 1.13 --- gamedialogue.h 24 Mar 2004 23:51:36 -0000 1.14 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEX_DIALOGUE__ #define __GAMEX_DIALOGUE__ Index: gameplanetview.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gameplanetview.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** gameplanetview.h 22 Feb 2004 10:49:38 -0000 1.11 --- gameplanetview.h 24 Mar 2004 23:51:36 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEX_PLANET_VIEW__ #define __GAMEX_PLANET_VIEW__ Index: gamegeneral.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gamegeneral.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** gamegeneral.h 15 Feb 2004 13:08:56 -0000 1.9 --- gamegeneral.h 24 Mar 2004 23:51:36 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEX_GENERAL__ #define __GAMEX_GENERAL__ Index: gameplanetscan.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/gameplanetscan.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** gameplanetscan.h 12 Mar 2004 20:14:58 -0000 1.10 --- gameplanetscan.h 24 Mar 2004 23:51:36 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEX_PLANET_SCAN__ #define __GAMEX_PLANET_SCAN__ Index: ai_fleet.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/ai_fleet.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ai_fleet.cpp 29 Jan 2004 21:20:28 -0000 1.4 --- ai_fleet.cpp 24 Mar 2004 23:51:36 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <stdio.h> |
Update of /cvsroot/timewarp/source/games In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/games Modified Files: gamehierarchy.cpp gamehierarchy.h gastroid.cpp gdebugonly.cpp gflmelee.cpp gflmelee.h ggob.cpp ggob.h ghyper.cpp gleague.cpp gluagame.cpp gmissions.cpp gmissions_objects.cpp gmissions_objects.h gplanets.cpp gplexplr.cpp gplexplr.h gplhuge.cpp gsamp2.cpp gsample.cpp gsarena.cpp gsolar.cpp gtrug.cpp gtrug.h vanguard.cpp vgGenSys.cpp Log Message: CVS useful macros Index: gsample.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gsample.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** gsample.cpp 18 Mar 2004 23:38:38 -0000 1.14 --- gsample.cpp 24 Mar 2004 23:51:35 -0000 1.15 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Index: gsarena.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gsarena.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** gsarena.cpp 17 Mar 2004 22:27:36 -0000 1.12 --- gsarena.cpp 24 Mar 2004 23:51:35 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> //allegro library header #include <stdio.h> Index: gleague.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gleague.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** gleague.cpp 17 Mar 2004 22:27:36 -0000 1.10 --- gleague.cpp 24 Mar 2004 23:51:35 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <stdio.h> #include <allegro.h> Index: gplexplr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gplexplr.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** gplexplr.cpp 29 Jan 2004 21:20:28 -0000 1.12 --- gplexplr.cpp 24 Mar 2004 23:51:35 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Index: ggob.h =================================================================== RCS file: /cvsroot/timewarp/source/games/ggob.h,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** ggob.h 20 Mar 2004 20:39:53 -0000 1.20 --- ggob.h 24 Mar 2004 23:51:35 -0000 1.21 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GGOB_H__ #define __GGOB_H__ Index: gflmelee.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gflmelee.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** gflmelee.cpp 18 Mar 2004 23:38:37 -0000 1.25 --- gflmelee.cpp 24 Mar 2004 23:51:34 -0000 1.26 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Fight between a player fleet (set in the ini file) and a random adversary fleet (never Index: ggob.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/ggob.cpp,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** ggob.cpp 20 Mar 2004 20:39:53 -0000 1.38 --- ggob.cpp 24 Mar 2004 23:51:34 -0000 1.39 *************** *** 1,3 **** ! #include <stdlib.h> #include <string.h> --- 1,3 ---- ! /* $Id$ */ #include <stdlib.h> #include <string.h> Index: gsamp2.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gsamp2.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** gsamp2.cpp 20 Feb 2004 08:42:43 -0000 1.9 --- gsamp2.cpp 24 Mar 2004 23:51:35 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Index: gmissions_objects.h =================================================================== RCS file: /cvsroot/timewarp/source/games/gmissions_objects.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** gmissions_objects.h 10 Jan 2004 22:27:59 -0000 1.4 --- gmissions_objects.h 24 Mar 2004 23:51:35 -0000 1.5 *************** *** 1,3 **** ! #ifndef __GMISSION_OBJECTS_H__ #define __GMISSION_OBJECTS_H__ --- 1,3 ---- ! /* $Id$ */ #ifndef __GMISSION_OBJECTS_H__ #define __GMISSION_OBJECTS_H__ Index: gsolar.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gsolar.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** gsolar.cpp 5 Mar 2004 17:51:28 -0000 1.10 --- gsolar.cpp 24 Mar 2004 23:51:35 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: gtrug.h =================================================================== RCS file: /cvsroot/timewarp/source/games/gtrug.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** gtrug.h 14 Feb 2004 13:18:37 -0000 1.7 --- gtrug.h 24 Mar 2004 23:51:35 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GTRUG_H__ #define __GTRUG_H__ Index: gplhuge.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gplhuge.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** gplhuge.cpp 29 Jan 2004 21:20:28 -0000 1.9 --- gplhuge.cpp 24 Mar 2004 23:51:35 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /*hacked version of the solar system melee by UAF and Corona688. I can't really code, so I probably made many a coding faux pas. And its ugly. Index: vgGenSys.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/vgGenSys.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** vgGenSys.cpp 12 Mar 2004 20:14:56 -0000 1.12 --- vgGenSys.cpp 24 Mar 2004 23:51:35 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: gdebugonly.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gdebugonly.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** gdebugonly.cpp 29 Jan 2004 21:20:27 -0000 1.8 --- gdebugonly.cpp 24 Mar 2004 23:51:34 -0000 1.9 *************** *** 1,3 **** ! #ifdef _DEBUG --- 1,3 ---- ! /* $Id$ */ #ifdef _DEBUG Index: gamehierarchy.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gamehierarchy.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** gamehierarchy.cpp 12 Mar 2004 20:14:55 -0000 1.10 --- gamehierarchy.cpp 24 Mar 2004 23:51:34 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: gamehierarchy.h =================================================================== RCS file: /cvsroot/timewarp/source/games/gamehierarchy.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** gamehierarchy.h 29 Jan 2004 21:20:27 -0000 1.6 --- gamehierarchy.h 24 Mar 2004 23:51:34 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEHIERARCHY_H__ #define __GAMEHIERARCHY_H__ Index: gmissions_objects.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gmissions_objects.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** gmissions_objects.cpp 29 Feb 2004 23:22:17 -0000 1.10 --- gmissions_objects.cpp 24 Mar 2004 23:51:35 -0000 1.11 *************** *** 1,3 **** ! #include <allegro.h> //allegro library header --- 1,3 ---- ! /* $Id$ */ #include <allegro.h> //allegro library header Index: gplanets.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gplanets.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** gplanets.cpp 17 Mar 2004 22:27:36 -0000 1.12 --- gplanets.cpp 24 Mar 2004 23:51:35 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /*hacked version of the solar system melee by UAF and Corona688. This one is done by rump and geoman.*/ Index: gflmelee.h =================================================================== RCS file: /cvsroot/timewarp/source/games/gflmelee.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** gflmelee.h 29 Jan 2004 21:20:27 -0000 1.4 --- gflmelee.h 24 Mar 2004 23:51:34 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GFLMELEE_H__ #define __GFLMELEE_H__ Index: gluagame.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gluagame.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** gluagame.cpp 29 Feb 2004 23:22:17 -0000 1.10 --- gluagame.cpp 24 Mar 2004 23:51:35 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /** gametype to test out how Lua and C++ and Timewarp get along. Index: gastroid.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gastroid.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** gastroid.cpp 29 Jan 2004 21:20:27 -0000 1.8 --- gastroid.cpp 24 Mar 2004 23:51:34 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> Index: gmissions.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gmissions.cpp,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** gmissions.cpp 12 Mar 2004 20:14:55 -0000 1.26 --- gmissions.cpp 24 Mar 2004 23:51:35 -0000 1.27 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ // missionorder Index: vanguard.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/vanguard.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** vanguard.cpp 17 Mar 2004 22:27:36 -0000 1.14 --- vanguard.cpp 24 Mar 2004 23:51:35 -0000 1.15 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> //allegro library header #include <string.h> //Used for my DAT file searchers Index: gtrug.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/gtrug.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** gtrug.cpp 18 Mar 2004 20:38:20 -0000 1.13 --- gtrug.cpp 24 Mar 2004 23:51:35 -0000 1.14 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include <string.h> Index: ghyper.cpp =================================================================== RCS file: /cvsroot/timewarp/source/games/ghyper.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ghyper.cpp 13 Mar 2004 11:45:31 -0000 1.10 --- ghyper.cpp 24 Mar 2004 23:51:35 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> Index: gplexplr.h =================================================================== RCS file: /cvsroot/timewarp/source/games/gplexplr.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** gplexplr.h 29 Jan 2004 21:20:28 -0000 1.4 --- gplexplr.h 24 Mar 2004 23:51:35 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GPLEXPLR_H__ #define __GPLEXPLR_H__ |
From: Yura S. <yu...@us...> - 2004-03-25 00:02:50
|
Update of /cvsroot/timewarp/source/jpgalleg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/jpgalleg Modified Files: decode.c encode.c internal.h io.c jpgalleg.c jpgalleg.h readme.txt Log Message: CVS useful macros Index: jpgalleg.c =================================================================== RCS file: /cvsroot/timewarp/source/jpgalleg/jpgalleg.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** jpgalleg.c 1 Mar 2004 23:21:46 -0000 1.1 --- jpgalleg.c 24 Mar 2004 23:51:37 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * __ _____ ______ ______ ___ ___ Index: io.c =================================================================== RCS file: /cvsroot/timewarp/source/jpgalleg/io.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** io.c 1 Mar 2004 23:21:46 -0000 1.1 --- io.c 24 Mar 2004 23:51:37 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * __ _____ ______ ______ ___ ___ Index: encode.c =================================================================== RCS file: /cvsroot/timewarp/source/jpgalleg/encode.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** encode.c 1 Mar 2004 23:21:46 -0000 1.1 --- encode.c 24 Mar 2004 23:51:37 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * __ _____ ______ ______ ___ ___ Index: jpgalleg.h =================================================================== RCS file: /cvsroot/timewarp/source/jpgalleg/jpgalleg.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** jpgalleg.h 1 Mar 2004 23:21:46 -0000 1.1 --- jpgalleg.h 24 Mar 2004 23:51:37 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * __ _____ ______ ______ ___ ___ Index: decode.c =================================================================== RCS file: /cvsroot/timewarp/source/jpgalleg/decode.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** decode.c 1 Mar 2004 23:21:46 -0000 1.1 --- decode.c 24 Mar 2004 23:51:37 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * __ _____ ______ ______ ___ ___ Index: readme.txt =================================================================== RCS file: /cvsroot/timewarp/source/jpgalleg/readme.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** readme.txt 1 Mar 2004 23:21:46 -0000 1.1 --- readme.txt 24 Mar 2004 23:51:37 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ This directory contains source files taken from JPGAlleg 2.2 library and patched to properly support loading jpg files in video modes with Index: internal.h =================================================================== RCS file: /cvsroot/timewarp/source/jpgalleg/internal.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** internal.h 1 Mar 2004 23:21:46 -0000 1.1 --- internal.h 24 Mar 2004 23:51:37 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * __ _____ ______ ______ ___ ___ |
From: Yura S. <yu...@us...> - 2004-03-25 00:02:50
|
Update of /cvsroot/timewarp/source/gamex/stuff In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/gamex/stuff Modified Files: backgr_stars.cpp backgr_stars.h space_body.cpp space_body.h Log Message: CVS useful macros Index: backgr_stars.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/stuff/backgr_stars.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** backgr_stars.cpp 29 Jan 2004 21:20:29 -0000 1.4 --- backgr_stars.cpp 24 Mar 2004 23:51:37 -0000 1.5 *************** *** 1,3 **** ! #include "../../melee.h" REGISTER_FILE --- 1,3 ---- ! /* $Id$ */ #include "../../melee.h" REGISTER_FILE Index: space_body.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/stuff/space_body.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** space_body.cpp 29 Feb 2004 23:22:20 -0000 1.10 --- space_body.cpp 24 Mar 2004 23:51:37 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <string.h> Index: space_body.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/stuff/space_body.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** space_body.h 15 Feb 2004 13:08:57 -0000 1.9 --- space_body.h 24 Mar 2004 23:51:37 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEX_SPACE_BODY__ #define __GAMEX_SPACE_BODY__ Index: backgr_stars.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/stuff/backgr_stars.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** backgr_stars.h 10 Jan 2004 22:27:58 -0000 1.2 --- backgr_stars.h 24 Mar 2004 23:51:37 -0000 1.3 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEX_BACKGR_STARS__ #define __GAMEX_BACKGR_STARS__ |
From: Yura S. <yu...@us...> - 2004-03-25 00:02:50
|
Update of /cvsroot/timewarp/source/gamex/general In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/gamex/general Modified Files: sprites.cpp sprites.h Log Message: CVS useful macros Index: sprites.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/general/sprites.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** sprites.cpp 29 Feb 2004 23:22:20 -0000 1.8 --- sprites.cpp 24 Mar 2004 23:51:36 -0000 1.9 *************** *** 1,3 **** ! #include <string.h> #include <stdio.h> --- 1,3 ---- ! /* $Id$ */ #include <string.h> #include <stdio.h> Index: sprites.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/general/sprites.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** sprites.h 10 Jan 2004 22:27:59 -0000 1.5 --- sprites.h 24 Mar 2004 23:51:36 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GAMEX_SPRITES__ #define __GAMEX_SPRITES__ |
From: Yura S. <yu...@us...> - 2004-03-25 00:02:50
|
Update of /cvsroot/timewarp/source/gamex/edit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/gamex/edit Modified Files: disk_stuff.cpp disk_stuff.h edit_dialogue.cpp edit_dialogue.h Log Message: CVS useful macros Index: edit_dialogue.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/edit/edit_dialogue.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** edit_dialogue.cpp 24 Feb 2004 23:25:07 -0000 1.9 --- edit_dialogue.cpp 24 Mar 2004 23:51:36 -0000 1.10 *************** *** 1,3 **** ! #include <allegro.h> #include <stdio.h> --- 1,3 ---- ! /* $Id$ */ #include <allegro.h> #include <stdio.h> Index: edit_dialogue.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/edit/edit_dialogue.h,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** edit_dialogue.h 29 Feb 2004 23:22:16 -0000 1.12 --- edit_dialogue.h 24 Mar 2004 23:51:36 -0000 1.13 *************** *** 1,3 **** ! #ifndef __GAMEX_EDIT_DIALOGUE__ #define __GAMEX_EDIT_DIALOGUE__ --- 1,3 ---- ! /* $Id$ */ #ifndef __GAMEX_EDIT_DIALOGUE__ #define __GAMEX_EDIT_DIALOGUE__ Index: disk_stuff.h =================================================================== RCS file: /cvsroot/timewarp/source/gamex/edit/disk_stuff.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** disk_stuff.h 29 Feb 2004 23:22:16 -0000 1.7 --- disk_stuff.h 24 Mar 2004 23:51:36 -0000 1.8 *************** *** 1,3 **** ! #ifndef __GAMEX_DISK_STUFF__ #define __GAMEX_DISK_STUFF__ --- 1,3 ---- ! /* $Id$ */ #ifndef __GAMEX_DISK_STUFF__ #define __GAMEX_DISK_STUFF__ Index: disk_stuff.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gamex/edit/disk_stuff.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** disk_stuff.cpp 7 Feb 2004 07:43:37 -0000 1.4 --- disk_stuff.cpp 24 Mar 2004 23:51:36 -0000 1.5 *************** *** 1,3 **** ! /* The use of this: --- 1,3 ---- ! /* $Id$ */ /* The use of this: |
From: Yura S. <yu...@us...> - 2004-03-25 00:02:46
|
Update of /cvsroot/timewarp/source/ais In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/ais Modified Files: c_input.cpp c_other.cpp c_wussie.cpp ext_ai.cpp ext_ai.h Log Message: CVS useful macros Index: c_input.cpp =================================================================== RCS file: /cvsroot/timewarp/source/ais/c_input.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** c_input.cpp 21 Mar 2004 23:21:00 -0000 1.13 --- c_input.cpp 24 Mar 2004 23:51:34 -0000 1.14 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * Star Control - TimeWarp Index: c_other.cpp =================================================================== RCS file: /cvsroot/timewarp/source/ais/c_other.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** c_other.cpp 17 Mar 2004 22:27:35 -0000 1.9 --- c_other.cpp 24 Mar 2004 23:51:34 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ais.h" REGISTER_FILE Index: ext_ai.h =================================================================== RCS file: /cvsroot/timewarp/source/ais/ext_ai.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ext_ai.h 2 Mar 2004 12:33:51 -0000 1.2 --- ext_ai.h 24 Mar 2004 23:51:34 -0000 1.3 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __EXT_AI_H__ #define __EXT_AI_H__ Index: ext_ai.cpp =================================================================== RCS file: /cvsroot/timewarp/source/ais/ext_ai.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ext_ai.cpp 15 Mar 2004 22:20:14 -0000 1.4 --- ext_ai.cpp 24 Mar 2004 23:51:34 -0000 1.5 *************** *** 1,3 **** ! #include <allegro.h> #include <string.h> --- 1,3 ---- ! /* $Id$ */ #include <allegro.h> #include <string.h> Index: c_wussie.cpp =================================================================== RCS file: /cvsroot/timewarp/source/ais/c_wussie.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** c_wussie.cpp 17 Mar 2004 22:27:35 -0000 1.12 --- c_wussie.cpp 24 Mar 2004 23:51:34 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <string.h> #include <stdio.h> |
From: Yura S. <yu...@us...> - 2004-03-25 00:02:46
|
Update of /cvsroot/timewarp/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source Modified Files: ais.h frame.cpp frame.h gui.cpp gui.h id.h input.cpp input.h libs.h melee.h sc1ships.h sc2ships.h scp.h ship.h Log Message: CVS useful macros Index: libs.h =================================================================== RCS file: /cvsroot/timewarp/source/libs.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** libs.h 8 Jun 2003 17:55:48 -0000 1.3 --- libs.h 24 Mar 2004 23:51:34 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* This file contains information about 2 things: Index: input.h =================================================================== RCS file: /cvsroot/timewarp/source/input.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** input.h 8 Jun 2003 17:55:48 -0000 1.3 --- input.h 24 Mar 2004 23:51:34 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Key format Index: sc1ships.h =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** sc1ships.h 8 Jun 2003 17:55:48 -0000 1.3 --- sc1ships.h 24 Mar 2004 23:51:34 -0000 1.4 *************** *** 1,3 **** ! class AndrosynthGuardian : public Ship { public: --- 1,3 ---- ! /* $Id$ */ class AndrosynthGuardian : public Ship { public: Index: frame.h =================================================================== RCS file: /cvsroot/timewarp/source/frame.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** frame.h 10 Jan 2004 22:27:58 -0000 1.5 --- frame.h 24 Mar 2004 23:51:33 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __FRAME_H__ #define __FRAME_H__ Index: gui.h =================================================================== RCS file: /cvsroot/timewarp/source/gui.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** gui.h 4 Feb 2004 10:36:27 -0000 1.5 --- gui.h 24 Mar 2004 23:51:34 -0000 1.6 *************** *** 1,3 **** ! /* Modifications to the Allegro GUI --- 1,3 ---- ! /* $Id$ */ /* Modifications to the Allegro GUI Index: scp.h =================================================================== RCS file: /cvsroot/timewarp/source/scp.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** scp.h 12 Mar 2004 20:14:54 -0000 1.8 --- scp.h 24 Mar 2004 23:51:34 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __SCP_H__ #define __SCP_H__ Index: ship.h =================================================================== RCS file: /cvsroot/timewarp/source/ship.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ship.h 10 Jan 2004 22:27:58 -0000 1.4 --- ship.h 24 Mar 2004 23:51:34 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __SHIP_H__ #define __SHIP_H__ Index: frame.cpp =================================================================== RCS file: /cvsroot/timewarp/source/frame.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** frame.cpp 10 Jan 2004 22:27:58 -0000 1.8 --- frame.cpp 24 Mar 2004 23:51:33 -0000 1.9 *************** *** 1,3 **** ! #include <stdlib.h> #include <stdio.h> --- 1,3 ---- ! /* $Id$ */ #include <stdlib.h> #include <stdio.h> Index: id.h =================================================================== RCS file: /cvsroot/timewarp/source/id.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** id.h 10 Jan 2004 22:27:58 -0000 1.4 --- id.h 24 Mar 2004 23:51:34 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __ID_H__ #define __ID_H__ Index: ais.h =================================================================== RCS file: /cvsroot/timewarp/source/ais.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ais.h 1 Mar 2004 23:21:43 -0000 1.8 --- ais.h 24 Mar 2004 23:51:33 -0000 1.9 *************** *** 1,3 **** ! #ifndef __AIS_H__ #define __AIS_H__ --- 1,3 ---- ! /* $Id$ */ #ifndef __AIS_H__ #define __AIS_H__ Index: melee.h =================================================================== RCS file: /cvsroot/timewarp/source/melee.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** melee.h 17 Mar 2004 22:27:34 -0000 1.15 --- melee.h 24 Mar 2004 23:51:34 -0000 1.16 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __MELEE_H__ #define __MELEE_H__ Index: sc2ships.h =================================================================== RCS file: /cvsroot/timewarp/source/sc2ships.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** sc2ships.h 12 Oct 2003 01:08:21 -0000 1.6 --- sc2ships.h 24 Mar 2004 23:51:34 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ class ChmmrAvatar : public Ship { public: Index: gui.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gui.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** gui.cpp 28 Feb 2004 01:05:49 -0000 1.17 --- gui.cpp 24 Mar 2004 23:51:33 -0000 1.18 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <stdlib.h> #include <stdio.h> Index: input.cpp =================================================================== RCS file: /cvsroot/timewarp/source/input.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** input.cpp 21 Nov 2003 10:15:47 -0000 1.5 --- input.cpp 24 Mar 2004 23:51:34 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * Star Control - TimeWarp |
Update of /cvsroot/timewarp/source/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/util Modified Files: aarot.c aastr.c aastr.h aautil.c aautil.h base.cpp base.h endian.cpp endian.h errors.cpp errors.h errors_c.c get_time.c get_time.h history.cpp history.h net_tcp.cpp net_tcp.h pmask.c pmask.h profile.cpp profile.h profile2.h random.cpp random.h round.c round.h sounds.cpp sounds.h types.cpp types.h vector2.cpp vector2.h Log Message: CVS useful macros Index: aastr.c =================================================================== RCS file: /cvsroot/timewarp/source/util/aastr.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** aastr.c 14 Feb 2004 13:18:38 -0000 1.5 --- aastr.c 24 Mar 2004 23:51:45 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* modified by orz for Star Control: TimeWarp AA stretching engine was re-written to support new features Index: round.c =================================================================== RCS file: /cvsroot/timewarp/source/util/round.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** round.c 21 Nov 2003 10:24:29 -0000 1.5 --- round.c 24 Mar 2004 23:51:45 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* These #defines control which algorithm is used for iround(), Index: net_tcp.h =================================================================== RCS file: /cvsroot/timewarp/source/util/net_tcp.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** net_tcp.h 12 Mar 2004 20:15:01 -0000 1.5 --- net_tcp.h 24 Mar 2004 23:51:45 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __NET_TCP_H__ Index: types.cpp =================================================================== RCS file: /cvsroot/timewarp/source/util/types.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** types.cpp 14 Feb 2004 13:18:38 -0000 1.4 --- types.cpp 24 Mar 2004 23:51:45 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "base.h" //#include "types.h" Index: errors.cpp =================================================================== RCS file: /cvsroot/timewarp/source/util/errors.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** errors.cpp 20 Feb 2004 08:42:44 -0000 1.9 --- errors.cpp 24 Mar 2004 23:51:45 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <string.h> #include <stdio.h> Index: errors_c.c =================================================================== RCS file: /cvsroot/timewarp/source/util/errors_c.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** errors_c.c 20 Feb 2004 08:42:44 -0000 1.9 --- errors_c.c 24 Mar 2004 23:51:45 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <string.h> #include <stdio.h> Index: sounds.h =================================================================== RCS file: /cvsroot/timewarp/source/util/sounds.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** sounds.h 25 Feb 2004 00:20:02 -0000 1.5 --- sounds.h 24 Mar 2004 23:51:45 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __SOUNDS_H__ #define __SOUNDS_H__ Index: net_tcp.cpp =================================================================== RCS file: /cvsroot/timewarp/source/util/net_tcp.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** net_tcp.cpp 19 Mar 2004 20:18:20 -0000 1.11 --- net_tcp.cpp 24 Mar 2004 23:51:45 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ //#define NETWORK_NONE //uncoment previous line to disable networking Index: profile.h =================================================================== RCS file: /cvsroot/timewarp/source/util/profile.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** profile.h 14 Feb 2004 13:18:38 -0000 1.1 --- profile.h 24 Mar 2004 23:51:45 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef _PROFILE_H #define _PROFILE_H Index: types.h =================================================================== RCS file: /cvsroot/timewarp/source/util/types.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** types.h 10 Jan 2004 22:27:58 -0000 1.4 --- types.h 24 Mar 2004 23:51:45 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __TYPES_H__ #define __TYPES_H__ Index: get_time.c =================================================================== RCS file: /cvsroot/timewarp/source/util/get_time.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** get_time.c 12 Mar 2004 20:15:01 -0000 1.9 --- get_time.c 24 Mar 2004 23:51:45 -0000 1.10 *************** *** 1,3 **** ! //#define NO_WINMM //#define NO_WINMM_TGT --- 1,3 ---- ! /* $Id$ */ //#define NO_WINMM //#define NO_WINMM_TGT Index: vector2.cpp =================================================================== RCS file: /cvsroot/timewarp/source/util/vector2.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** vector2.cpp 21 Nov 2003 10:24:29 -0000 1.9 --- vector2.cpp 24 Mar 2004 23:51:45 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <stdlib.h> #include <math.h> Index: endian.h =================================================================== RCS file: /cvsroot/timewarp/source/util/endian.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** endian.h 10 Jan 2004 22:27:58 -0000 1.4 --- endian.h 24 Mar 2004 23:51:45 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __TW_ENDIAN_H__ #define __TW_ENDIAN_H__ Index: get_time.h =================================================================== RCS file: /cvsroot/timewarp/source/util/get_time.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** get_time.h 12 Mar 2004 20:15:01 -0000 1.7 --- get_time.h 24 Mar 2004 23:51:45 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GET_TIME_H__ #define __GET_TIME_H__ Index: vector2.h =================================================================== RCS file: /cvsroot/timewarp/source/util/vector2.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** vector2.h 10 Jan 2004 22:27:58 -0000 1.7 --- vector2.h 24 Mar 2004 23:51:45 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __VECTOR2_H__ #define __VECTOR2_H__ Index: base.h =================================================================== RCS file: /cvsroot/timewarp/source/util/base.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** base.h 12 Mar 2004 20:15:01 -0000 1.8 --- base.h 24 Mar 2004 23:51:45 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __BASE_H__ #define __BASE_H__ Index: profile2.h =================================================================== RCS file: /cvsroot/timewarp/source/util/profile2.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** profile2.h 14 Feb 2004 13:18:38 -0000 1.1 --- profile2.h 24 Mar 2004 23:51:45 -0000 1.2 *************** *** 1,3 **** ! #include <vector> --- 1,3 ---- ! /* $Id$ */ #include <vector> Index: aarot.c =================================================================== RCS file: /cvsroot/timewarp/source/util/aarot.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** aarot.c 20 Oct 2003 14:46:14 -0000 1.4 --- aarot.c 24 Mar 2004 23:51:45 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* modified by orz for Star Control: TimeWarp aa_rotate_sprite rotated around a different point than rotate_sprite Index: errors.h =================================================================== RCS file: /cvsroot/timewarp/source/util/errors.h,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** errors.h 20 Feb 2004 08:42:44 -0000 1.13 --- errors.h 24 Mar 2004 23:51:45 -0000 1.14 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __ERRORS_H__ #define __ERRORS_H__ Index: aastr.h =================================================================== RCS file: /cvsroot/timewarp/source/util/aastr.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** aastr.h 5 Mar 2004 17:51:28 -0000 1.6 --- aastr.h 24 Mar 2004 23:51:45 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * aastr.h --- anti-aliased stretching and rotation for Allegro Index: profile.cpp =================================================================== RCS file: /cvsroot/timewarp/source/util/profile.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** profile.cpp 29 Feb 2004 23:22:17 -0000 1.3 --- profile.cpp 24 Mar 2004 23:51:45 -0000 1.4 *************** *** 1,3 **** ! #include <stdlib.h> #include <stdio.h> --- 1,3 ---- ! /* $Id$ */ #include <stdlib.h> #include <stdio.h> Index: history.cpp =================================================================== RCS file: /cvsroot/timewarp/source/util/history.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** history.cpp 21 Nov 2003 10:24:29 -0000 1.4 --- history.cpp 24 Mar 2004 23:51:45 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <stdlib.h> #include <math.h> Index: round.h =================================================================== RCS file: /cvsroot/timewarp/source/util/round.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** round.h 10 Jan 2004 22:27:58 -0000 1.4 --- round.h 24 Mar 2004 23:51:45 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __TWROUND_H__ #define __TWROUND_H__ Index: random.cpp =================================================================== RCS file: /cvsroot/timewarp/source/util/random.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** random.cpp 21 Nov 2003 10:24:29 -0000 1.6 --- random.cpp 24 Mar 2004 23:51:45 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <math.h> #include <string.h> Index: history.h =================================================================== RCS file: /cvsroot/timewarp/source/util/history.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** history.h 10 Jan 2004 22:27:58 -0000 1.4 --- history.h 24 Mar 2004 23:51:45 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __HISTORY_H__ #define __HISTORY_H__ Index: aautil.h =================================================================== RCS file: /cvsroot/timewarp/source/util/aautil.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** aautil.h 8 Jun 2003 16:07:28 -0000 1.3 --- aautil.h 24 Mar 2004 23:51:45 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * aautil.h --- helpers for anti-aliasing routines for Allegro Index: endian.cpp =================================================================== RCS file: /cvsroot/timewarp/source/util/endian.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** endian.cpp 8 Jun 2003 17:55:56 -0000 1.3 --- endian.cpp 24 Mar 2004 23:51:45 -0000 1.4 *************** *** 1,3 **** ! #define PLATFORM_IS_ALLEGRO --- 1,3 ---- ! /* $Id$ */ #define PLATFORM_IS_ALLEGRO Index: pmask.c =================================================================== RCS file: /cvsroot/timewarp/source/util/pmask.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** pmask.c 15 Mar 2004 22:20:33 -0000 1.7 --- pmask.c 24 Mar 2004 23:51:45 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <stdlib.h> #include <string.h> Index: aautil.c =================================================================== RCS file: /cvsroot/timewarp/source/util/aautil.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** aautil.c 20 Oct 2003 14:46:14 -0000 1.5 --- aautil.c 24 Mar 2004 23:51:45 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* modified by orz for Star Control: TimeWarp Lots of features added, large code re-organization, etc. Index: base.cpp =================================================================== RCS file: /cvsroot/timewarp/source/util/base.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** base.cpp 12 Mar 2004 20:15:01 -0000 1.6 --- base.cpp 24 Mar 2004 23:51:45 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <stdlib.h> Index: random.h =================================================================== RCS file: /cvsroot/timewarp/source/util/random.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** random.h 10 Jan 2004 22:27:58 -0000 1.5 --- random.h 24 Mar 2004 23:51:45 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef _TYPES_H # include "types.h" Index: pmask.h =================================================================== RCS file: /cvsroot/timewarp/source/util/pmask.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** pmask.h 10 Jan 2004 22:27:58 -0000 1.4 --- pmask.h 24 Mar 2004 23:51:45 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __PMASK_H__ #define __PMASK_H__ Index: sounds.cpp =================================================================== RCS file: /cvsroot/timewarp/source/util/sounds.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** sounds.cpp 25 Feb 2004 00:20:02 -0000 1.5 --- sounds.cpp 24 Mar 2004 23:51:45 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ //#define NO_JGMOD |
From: Yura S. <yu...@us...> - 2004-03-25 00:02:29
|
Update of /cvsroot/timewarp/source/sc1ships In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/sc1ships Modified Files: shpandgu.cpp shparisk.cpp shpchebr.cpp shpearcr.cpp shpilwav.cpp shpkzedr.cpp shpmmrxf.cpp shpmycpo.cpp shpshosc.cpp shpspael.cpp shpsyrpe.cpp shpumgdr.cpp shpvuxin.cpp shpyehte.cpp Log Message: CVS useful macros Index: shpandgu.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships/shpandgu.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shpandgu.cpp 19 Mar 2004 20:18:20 -0000 1.11 --- shpandgu.cpp 24 Mar 2004 23:51:44 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpmycpo.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships/shpmycpo.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shpmycpo.cpp 19 Mar 2004 20:18:20 -0000 1.8 --- shpmycpo.cpp 24 Mar 2004 23:51:44 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpearcr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships/shpearcr.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shpearcr.cpp 19 Mar 2004 20:18:20 -0000 1.6 --- shpearcr.cpp 24 Mar 2004 23:51:44 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpspael.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships/shpspael.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shpspael.cpp 19 Mar 2004 20:18:20 -0000 1.6 --- shpspael.cpp 24 Mar 2004 23:51:44 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpmmrxf.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships/shpmmrxf.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shpmmrxf.cpp 19 Mar 2004 20:18:20 -0000 1.8 --- shpmmrxf.cpp 24 Mar 2004 23:51:44 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpumgdr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships/shpumgdr.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** shpumgdr.cpp 19 Mar 2004 20:18:20 -0000 1.14 --- shpumgdr.cpp 24 Mar 2004 23:51:44 -0000 1.15 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shparisk.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships/shparisk.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** shparisk.cpp 19 Mar 2004 20:18:20 -0000 1.7 --- shparisk.cpp 24 Mar 2004 23:51:44 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpyehte.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships/shpyehte.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shpyehte.cpp 19 Mar 2004 20:18:20 -0000 1.6 --- shpyehte.cpp 24 Mar 2004 23:51:44 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpchebr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships/shpchebr.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shpchebr.cpp 19 Mar 2004 20:18:20 -0000 1.9 --- shpchebr.cpp 24 Mar 2004 23:51:44 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpshosc.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships/shpshosc.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shpshosc.cpp 19 Mar 2004 20:18:20 -0000 1.6 --- shpshosc.cpp 24 Mar 2004 23:51:44 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpsyrpe.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships/shpsyrpe.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shpsyrpe.cpp 19 Mar 2004 20:18:20 -0000 1.11 --- shpsyrpe.cpp 24 Mar 2004 23:51:44 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpilwav.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships/shpilwav.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** shpilwav.cpp 19 Mar 2004 20:18:20 -0000 1.7 --- shpilwav.cpp 24 Mar 2004 23:51:44 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpvuxin.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships/shpvuxin.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shpvuxin.cpp 19 Mar 2004 20:18:20 -0000 1.9 --- shpvuxin.cpp 24 Mar 2004 23:51:44 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpkzedr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc1ships/shpkzedr.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shpkzedr.cpp 19 Mar 2004 20:18:20 -0000 1.8 --- shpkzedr.cpp 24 Mar 2004 23:51:44 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE |
Update of /cvsroot/timewarp/source/twgui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/twgui Modified Files: gamebuttonevent.h gametest2.cpp gametest2.h twbutton.cpp twbutton.h twbuttontypes.cpp twbuttontypes.h twgui.h twguilist.cpp twguilist.h twhelpers.cpp twhelpers.h twmenuexamples.cpp twmenuexamples.h twpopup.cpp twpopup.h twwindow.cpp twwindow.h utils.cpp utils.h Log Message: CVS useful macros Index: twguilist.cpp =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twguilist.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** twguilist.cpp 18 Mar 2004 23:38:54 -0000 1.4 --- twguilist.cpp 24 Mar 2004 23:51:45 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: twgui.h =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twgui.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** twgui.h 29 Feb 2004 23:24:59 -0000 1.15 --- twgui.h 24 Mar 2004 23:51:45 -0000 1.16 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: twbuttontypes.cpp =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twbuttontypes.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** twbuttontypes.cpp 29 Feb 2004 23:22:21 -0000 1.9 --- twbuttontypes.cpp 24 Mar 2004 23:51:45 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: twbutton.h =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twbutton.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** twbutton.h 28 Feb 2004 15:16:32 -0000 1.5 --- twbutton.h 24 Mar 2004 23:51:45 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: twmenuexamples.h =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twmenuexamples.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** twmenuexamples.h 28 Feb 2004 15:16:32 -0000 1.4 --- twmenuexamples.h 24 Mar 2004 23:51:45 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: utils.h =================================================================== RCS file: /cvsroot/timewarp/source/twgui/utils.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** utils.h 29 Feb 2004 23:22:21 -0000 1.10 --- utils.h 24 Mar 2004 23:51:45 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: twpopup.h =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twpopup.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** twpopup.h 28 Feb 2004 15:16:32 -0000 1.4 --- twpopup.h 24 Mar 2004 23:51:45 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: twguilist.h =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twguilist.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** twguilist.h 28 Feb 2004 15:16:32 -0000 1.1 --- twguilist.h 24 Mar 2004 23:51:45 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: twhelpers.h =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twhelpers.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** twhelpers.h 28 Feb 2004 15:16:32 -0000 1.5 --- twhelpers.h 24 Mar 2004 23:51:45 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: twhelpers.cpp =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twhelpers.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** twhelpers.cpp 29 Feb 2004 23:22:21 -0000 1.6 --- twhelpers.cpp 24 Mar 2004 23:51:45 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: twwindow.h =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twwindow.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** twwindow.h 28 Feb 2004 15:16:32 -0000 1.7 --- twwindow.h 24 Mar 2004 23:51:45 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: gamebuttonevent.h =================================================================== RCS file: /cvsroot/timewarp/source/twgui/gamebuttonevent.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** gamebuttonevent.h 28 Feb 2004 15:16:32 -0000 1.5 --- gamebuttonevent.h 24 Mar 2004 23:51:45 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: twwindow.cpp =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twwindow.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** twwindow.cpp 29 Feb 2004 23:22:21 -0000 1.11 --- twwindow.cpp 24 Mar 2004 23:51:45 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: utils.cpp =================================================================== RCS file: /cvsroot/timewarp/source/twgui/utils.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** utils.cpp 28 Feb 2004 15:32:03 -0000 1.12 --- utils.cpp 24 Mar 2004 23:51:45 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: gametest2.h =================================================================== RCS file: /cvsroot/timewarp/source/twgui/gametest2.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** gametest2.h 29 Jan 2004 21:20:31 -0000 1.4 --- gametest2.h 24 Mar 2004 23:51:45 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __TWGUI_GAMETEST2_H__ #define __TWGUI_GAMETEST2_H__ Index: gametest2.cpp =================================================================== RCS file: /cvsroot/timewarp/source/twgui/gametest2.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** gametest2.cpp 18 Mar 2004 23:38:54 -0000 1.10 --- gametest2.cpp 24 Mar 2004 23:51:45 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Geo: I DISABLED THIS CAUSE it's served its use - it can be removed I think. Index: twbuttontypes.h =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twbuttontypes.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** twbuttontypes.h 28 Feb 2004 15:16:32 -0000 1.9 --- twbuttontypes.h 24 Mar 2004 23:51:45 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: twmenuexamples.cpp =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twmenuexamples.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** twmenuexamples.cpp 18 Mar 2004 20:54:59 -0000 1.7 --- twmenuexamples.cpp 24 Mar 2004 23:51:45 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: twbutton.cpp =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twbutton.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** twbutton.cpp 29 Feb 2004 23:22:21 -0000 1.8 --- twbutton.cpp 24 Mar 2004 23:51:45 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! Index: twpopup.cpp =================================================================== RCS file: /cvsroot/timewarp/source/twgui/twpopup.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** twpopup.cpp 29 Feb 2004 23:22:21 -0000 1.6 --- twpopup.cpp 24 Mar 2004 23:51:45 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* Placed in public domain by Rob Devilee, 2004. Share and enjoy! |
From: Yura S. <yu...@us...> - 2004-03-25 00:02:29
|
Update of /cvsroot/timewarp/source/sc2ships In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/sc2ships Modified Files: shpchmav.cpp shpdruma.cpp shpkohma.cpp shpmeltr.cpp shporzne.cpp shppkufu.cpp shpslypr.cpp shpsupbl.cpp shpthrto.cpp shputwju.cpp shpzfpst.cpp Log Message: CVS useful macros Index: shpthrto.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc2ships/shpthrto.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shpthrto.cpp 19 Mar 2004 20:18:20 -0000 1.12 --- shpthrto.cpp 24 Mar 2004 23:51:44 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpkohma.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc2ships/shpkohma.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** shpkohma.cpp 19 Mar 2004 20:18:20 -0000 1.7 --- shpkohma.cpp 24 Mar 2004 23:51:44 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpzfpst.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc2ships/shpzfpst.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shpzfpst.cpp 19 Mar 2004 20:18:20 -0000 1.10 --- shpzfpst.cpp 24 Mar 2004 23:51:44 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpmeltr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc2ships/shpmeltr.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shpmeltr.cpp 19 Mar 2004 20:18:20 -0000 1.10 --- shpmeltr.cpp 24 Mar 2004 23:51:44 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shporzne.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc2ships/shporzne.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** shporzne.cpp 19 Mar 2004 20:18:20 -0000 1.15 --- shporzne.cpp 24 Mar 2004 23:51:44 -0000 1.16 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpchmav.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc2ships/shpchmav.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** shpchmav.cpp 19 Mar 2004 20:18:20 -0000 1.13 --- shpchmav.cpp 24 Mar 2004 23:51:44 -0000 1.14 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpdruma.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc2ships/shpdruma.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** shpdruma.cpp 19 Mar 2004 20:18:20 -0000 1.8 --- shpdruma.cpp 24 Mar 2004 23:51:44 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpsupbl.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc2ships/shpsupbl.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shpsupbl.cpp 19 Mar 2004 20:18:20 -0000 1.6 --- shpsupbl.cpp 24 Mar 2004 23:51:44 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shppkufu.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc2ships/shppkufu.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** shppkufu.cpp 19 Mar 2004 20:18:20 -0000 1.12 --- shppkufu.cpp 24 Mar 2004 23:51:44 -0000 1.13 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpslypr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc2ships/shpslypr.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** shpslypr.cpp 19 Mar 2004 20:18:20 -0000 1.14 --- shpslypr.cpp 24 Mar 2004 23:51:44 -0000 1.15 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" Index: shputwju.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc2ships/shputwju.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shputwju.cpp 19 Mar 2004 20:18:20 -0000 1.6 --- shputwju.cpp 24 Mar 2004 23:51:44 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE |
From: Yura S. <yu...@us...> - 2004-03-25 00:02:29
|
Update of /cvsroot/timewarp/source/sc3ships In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/sc3ships Modified Files: shpclapi.cpp shpdakvi.cpp shpdooco.cpp shpexqen.cpp shpharra.cpp shpherex.cpp shpktacr.cpp shplk_sa.cpp shpowavo.cpp shpplopl.cpp shpvyrin.cpp shpxchex.cpp Log Message: CVS useful macros Index: shpowavo.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc3ships/shpowavo.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shpowavo.cpp 29 Feb 2004 23:22:20 -0000 1.9 --- shpowavo.cpp 24 Mar 2004 23:51:44 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpclapi.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc3ships/shpclapi.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** shpclapi.cpp 29 Jan 2004 21:20:31 -0000 1.7 --- shpclapi.cpp 24 Mar 2004 23:51:44 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpdooco.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc3ships/shpdooco.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** shpdooco.cpp 29 Jan 2004 21:20:31 -0000 1.5 --- shpdooco.cpp 24 Mar 2004 23:51:44 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shplk_sa.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc3ships/shplk_sa.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** shplk_sa.cpp 29 Jan 2004 21:20:31 -0000 1.5 --- shplk_sa.cpp 24 Mar 2004 23:51:44 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpxchex.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc3ships/shpxchex.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** shpxchex.cpp 29 Jan 2004 21:20:31 -0000 1.11 --- shpxchex.cpp 24 Mar 2004 23:51:44 -0000 1.12 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpexqen.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc3ships/shpexqen.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** shpexqen.cpp 29 Jan 2004 21:20:31 -0000 1.7 --- shpexqen.cpp 24 Mar 2004 23:51:44 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpharra.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc3ships/shpharra.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** shpharra.cpp 29 Jan 2004 21:20:31 -0000 1.5 --- shpharra.cpp 24 Mar 2004 23:51:44 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpplopl.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc3ships/shpplopl.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** shpplopl.cpp 29 Jan 2004 21:20:31 -0000 1.5 --- shpplopl.cpp 24 Mar 2004 23:51:44 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpvyrin.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc3ships/shpvyrin.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shpvyrin.cpp 29 Jan 2004 21:20:31 -0000 1.9 --- shpvyrin.cpp 24 Mar 2004 23:51:44 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpdakvi.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc3ships/shpdakvi.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** shpdakvi.cpp 21 Feb 2004 00:29:19 -0000 1.6 --- shpdakvi.cpp 24 Mar 2004 23:51:44 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpktacr.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc3ships/shpktacr.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** shpktacr.cpp 29 Jan 2004 21:20:31 -0000 1.5 --- shpktacr.cpp 24 Mar 2004 23:51:44 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE Index: shpherex.cpp =================================================================== RCS file: /cvsroot/timewarp/source/sc3ships/shpherex.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** shpherex.cpp 29 Jan 2004 21:20:31 -0000 1.5 --- shpherex.cpp 24 Mar 2004 23:51:44 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../ship.h" REGISTER_FILE |
Update of /cvsroot/timewarp/source/other In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27478/source/other Modified Files: configrw.cpp configrw.h fontmorph.cpp fontmorph.h gconfig.cpp gconfig.h gdialog.cpp gdialog.h gevent.cpp gevent.h gquest.cpp gquest.h gup.cpp gup.h luaport.cpp luaport.h nullphas.cpp nullphas.h objanim.cpp objanim.h orbit.cpp orbit.h planet3d.cpp planet3d.h radar.cpp radar.h shippart.cpp shippart.h ttf.cpp ttf.h vbodies.cpp vbodies.h vtarget.cpp vtarget.h Log Message: CVS useful macros Index: vbodies.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/vbodies.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** vbodies.cpp 29 Jan 2004 21:20:30 -0000 1.11 --- vbodies.cpp 24 Mar 2004 23:51:44 -0000 1.12 *************** *** 1,3 **** ! #include <allegro.h> #include <string.h> --- 1,3 ---- ! /* $Id$ */ #include <allegro.h> #include <string.h> Index: orbit.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/orbit.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** orbit.cpp 29 Jan 2004 21:20:30 -0000 1.8 --- orbit.cpp 24 Mar 2004 23:51:43 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <stdio.h> #include <allegro.h> Index: nullphas.h =================================================================== RCS file: /cvsroot/timewarp/source/other/nullphas.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nullphas.h 29 Jan 2004 21:20:30 -0000 1.6 --- nullphas.h 24 Mar 2004 23:51:43 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __NULLPHAS_H__ #define __NULLPHAS_H__ Index: luaport.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/luaport.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** luaport.cpp 22 Feb 2004 10:48:38 -0000 1.2 --- luaport.cpp 24 Mar 2004 23:51:43 -0000 1.3 *************** *** 1,3 **** ! #include <string.h> --- 1,3 ---- ! /* $Id$ */ #include <string.h> Index: vtarget.h =================================================================== RCS file: /cvsroot/timewarp/source/other/vtarget.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** vtarget.h 10 Jan 2004 22:27:59 -0000 1.5 --- vtarget.h 24 Mar 2004 23:51:44 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __VTARGET__ #define __VTARGET__ Index: fontmorph.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/fontmorph.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** fontmorph.cpp 18 Feb 2004 18:43:49 -0000 1.2 --- fontmorph.cpp 24 Mar 2004 23:51:43 -0000 1.3 *************** *** 1,3 **** ! #include "fontmorph.h" --- 1,3 ---- ! /* $Id$ */ #include "fontmorph.h" Index: gquest.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/gquest.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** gquest.cpp 20 Mar 2004 19:54:09 -0000 1.19 --- gquest.cpp 24 Mar 2004 23:51:43 -0000 1.20 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> Index: objanim.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/objanim.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** objanim.cpp 29 Jan 2004 21:20:30 -0000 1.7 --- objanim.cpp 24 Mar 2004 23:51:43 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../melee.h" REGISTER_FILE Index: gconfig.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/gconfig.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** gconfig.cpp 18 Mar 2004 23:38:39 -0000 1.4 --- gconfig.cpp 24 Mar 2004 23:51:43 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* This file is part of "Star Control: TimeWarp" Index: vtarget.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/vtarget.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** vtarget.cpp 29 Jan 2004 21:20:30 -0000 1.7 --- vtarget.cpp 24 Mar 2004 23:51:44 -0000 1.8 *************** *** 1,3 **** ! #include "../melee.h" REGISTER_FILE --- 1,3 ---- ! /* $Id$ */ #include "../melee.h" REGISTER_FILE Index: ttf.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/ttf.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ttf.cpp 20 Mar 2004 22:36:37 -0000 1.3 --- ttf.cpp 24 Mar 2004 23:51:43 -0000 1.4 *************** *** 1,3 **** ! #include <allegro.h> #include "allegro/internal/aintern.h" --- 1,3 ---- ! /* $Id$ */ #include <allegro.h> #include "allegro/internal/aintern.h" Index: gevent.h =================================================================== RCS file: /cvsroot/timewarp/source/other/gevent.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** gevent.h 12 Mar 2004 21:57:54 -0000 1.8 --- gevent.h 24 Mar 2004 23:51:43 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GEVENT_H__ #define __GEVENT_H__ Index: radar.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/radar.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** radar.cpp 29 Jan 2004 21:20:30 -0000 1.7 --- radar.cpp 24 Mar 2004 23:51:43 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <allegro.h> #include "../melee.h" Index: gup.h =================================================================== RCS file: /cvsroot/timewarp/source/other/gup.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** gup.h 29 Jan 2004 21:20:30 -0000 1.6 --- gup.h 24 Mar 2004 23:51:43 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GUP_H__ #define __GUP_H__ Index: radar.h =================================================================== RCS file: /cvsroot/timewarp/source/other/radar.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** radar.h 29 Jan 2004 21:20:30 -0000 1.6 --- radar.h 24 Mar 2004 23:51:43 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __RADAR_H__ #define __RADAR_H__ Index: fontmorph.h =================================================================== RCS file: /cvsroot/timewarp/source/other/fontmorph.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fontmorph.h 15 Feb 2004 13:08:10 -0000 1.1 --- fontmorph.h 24 Mar 2004 23:51:43 -0000 1.2 *************** *** 1,3 **** ! #ifndef __FONT_MORPH__ #define __FONT_MORPH__ --- 1,3 ---- ! /* $Id$ */ #ifndef __FONT_MORPH__ #define __FONT_MORPH__ Index: objanim.h =================================================================== RCS file: /cvsroot/timewarp/source/other/objanim.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** objanim.h 29 Jan 2004 21:20:30 -0000 1.6 --- objanim.h 24 Mar 2004 23:51:43 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __OBJANIM_H__ #define __OBJANIM_H__ Index: luaport.h =================================================================== RCS file: /cvsroot/timewarp/source/other/luaport.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** luaport.h 28 Feb 2004 01:05:49 -0000 1.3 --- luaport.h 24 Mar 2004 23:51:43 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __LUA_PORT__ #define __LUA_PORT__ Index: nullphas.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/nullphas.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** nullphas.cpp 29 Jan 2004 21:20:30 -0000 1.7 --- nullphas.cpp 24 Mar 2004 23:51:43 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include "../melee.h" REGISTER_FILE Index: shippart.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/shippart.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** shippart.cpp 29 Jan 2004 21:20:30 -0000 1.10 --- shippart.cpp 24 Mar 2004 23:51:43 -0000 1.11 *************** *** 1,3 **** ! #include "../ship.h" --- 1,3 ---- ! /* $Id$ */ #include "../ship.h" Index: gconfig.h =================================================================== RCS file: /cvsroot/timewarp/source/other/gconfig.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gconfig.h 5 Mar 2004 17:53:10 -0000 1.1 --- gconfig.h 24 Mar 2004 23:51:43 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* This file is part of "Star Control: TimeWarp" Index: planet3d.h =================================================================== RCS file: /cvsroot/timewarp/source/other/planet3d.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** planet3d.h 29 Jan 2004 21:20:30 -0000 1.4 --- planet3d.h 24 Mar 2004 23:51:43 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __PLANET_3D__ #define __PLANET_3D__ Index: gup.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/gup.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** gup.cpp 5 Mar 2004 17:51:28 -0000 1.10 --- gup.cpp 24 Mar 2004 23:51:43 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #include <string.h> #include <allegro.h> Index: vbodies.h =================================================================== RCS file: /cvsroot/timewarp/source/other/vbodies.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** vbodies.h 29 Jan 2004 21:20:30 -0000 1.6 --- vbodies.h 24 Mar 2004 23:51:44 -0000 1.7 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ //this file belongs in the \other directory Index: configrw.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/configrw.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** configrw.cpp 15 Mar 2004 22:20:33 -0000 1.6 --- configrw.cpp 24 Mar 2004 23:51:43 -0000 1.7 *************** *** 1,3 **** ! #include <allegro.h> #include <string.h> --- 1,3 ---- ! /* $Id$ */ #include <allegro.h> #include <string.h> Index: shippart.h =================================================================== RCS file: /cvsroot/timewarp/source/other/shippart.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** shippart.h 29 Jan 2004 21:20:30 -0000 1.9 --- shippart.h 24 Mar 2004 23:51:43 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __SHIPPART__ #define __SHIPPART__ Index: ttf.h =================================================================== RCS file: /cvsroot/timewarp/source/other/ttf.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ttf.h 15 Feb 2004 13:08:10 -0000 1.1 --- ttf.h 24 Mar 2004 23:51:44 -0000 1.2 *************** *** 1,3 **** ! #ifndef __FONT_TTF__ --- 1,3 ---- ! /* $Id$ */ #ifndef __FONT_TTF__ Index: gdialog.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/gdialog.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** gdialog.cpp 5 Mar 2004 17:51:28 -0000 1.9 --- gdialog.cpp 24 Mar 2004 23:51:43 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* This file is part of "Star Control: TimeWarp" Index: configrw.h =================================================================== RCS file: /cvsroot/timewarp/source/other/configrw.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** configrw.h 28 Feb 2004 15:18:24 -0000 1.3 --- configrw.h 24 Mar 2004 23:51:43 -0000 1.4 *************** *** 1,3 **** ! #ifndef __CONFIG_RW__ #define __CONFIG_RW__ --- 1,3 ---- ! /* $Id$ */ #ifndef __CONFIG_RW__ #define __CONFIG_RW__ Index: gquest.h =================================================================== RCS file: /cvsroot/timewarp/source/other/gquest.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** gquest.h 28 Feb 2004 01:05:49 -0000 1.9 --- gquest.h 24 Mar 2004 23:51:43 -0000 1.10 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __GQUEST_H__ #define __GQUEST_H__ Index: gdialog.h =================================================================== RCS file: /cvsroot/timewarp/source/other/gdialog.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** gdialog.h 5 Mar 2004 17:51:28 -0000 1.4 --- gdialog.h 24 Mar 2004 23:51:43 -0000 1.5 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* This file is part of "Star Control: TimeWarp" Index: gevent.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/gevent.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** gevent.cpp 12 Mar 2004 21:57:54 -0000 1.8 --- gevent.cpp 24 Mar 2004 23:51:43 -0000 1.9 *************** *** 1,3 **** ! #include <allegro.h> --- 1,3 ---- ! /* $Id$ */ #include <allegro.h> Index: orbit.h =================================================================== RCS file: /cvsroot/timewarp/source/other/orbit.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** orbit.h 13 Jan 2004 01:15:25 -0000 1.5 --- orbit.h 24 Mar 2004 23:51:43 -0000 1.6 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ #ifndef __ORBIT_H__ #define __ORBIT_H__ Index: planet3d.cpp =================================================================== RCS file: /cvsroot/timewarp/source/other/planet3d.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** planet3d.cpp 12 Mar 2004 20:15:00 -0000 1.18 --- planet3d.cpp 24 Mar 2004 23:51:43 -0000 1.19 *************** *** 1,3 **** ! /* --- 1,3 ---- ! /* $Id$ */ /* |
From: Yura S. <yu...@us...> - 2004-03-24 00:41:35
|
Update of /cvsroot/timewarp/source/melee In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15617/melee Modified Files: mframe.cpp mframe.h Log Message: test Index: mframe.h =================================================================== RCS file: /cvsroot/timewarp/source/melee/mframe.h,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** mframe.h 13 Mar 2004 11:45:31 -0000 1.19 --- mframe.h 24 Mar 2004 00:30:48 -0000 1.20 *************** *** 19,22 **** --- 19,23 ---- class ExternalAI; + /* enum { ATTRIB_SYNCHED = 0x00000001, *************** *** 53,56 **** --- 54,93 ---- }; + */ + + enum { + ATTRIB_SYNCHED = (1<<0), + ATTRIB_LOGGED = (1<<1), + ATTRIB_INGAME = (1<<2), + + ATTRIB_TARGET = (1<<3), + ATTRIB_FOCUS = (1<<4), + ATTRIB_ACTIVE_FOCUS = (1<<5), + + ATTRIB_NOTIFY_ON_DEATH = (1<<6), + + ATTRIB_STANDARD_INDEX = (1<<7), + ATTRIB_STRICT_RECT = (1<<8), + + ATTRIB_COLLIDE_STATIC = (1<<9), + + //ATTRIB_BOUNCY //currently, anything that has mass + //ATTRIB_MASSFULL //anything that has mass + //ATTRIB_CREWED //currently, only ships with green crew + //ATTRIB_ORGANIC //currently, only ships with green crew + //ATTRIB_SENTIENT //currently, only ships + //ATTRIB_NEUTRAL //asteroids & planets + //ATTRIB_CONTACT_DANGER //things to avoid + + ATTRIB_LOCATION = (1<<10), + ATTRIB_OBJECT = (1<<11), + ATTRIB_LINE = (1<<12), + ATTRIB_SHOT = (1<<13), + ATTRIB_SHIP = (1<<14), + + // this hides objects from queries = important in case there are many objects (hide hotspots!!)! + ATTRIB_UNDETECTABLE = (1<<15) + }; + /*struct Listed { Index: mframe.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mframe.cpp,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** mframe.cpp 13 Mar 2004 11:45:31 -0000 1.28 --- mframe.cpp 24 Mar 2004 00:30:48 -0000 1.29 *************** *** 681,691 **** void SpaceObject::collide(SpaceObject *other) {STACKTRACE - // double dx, dy; - // double dvx, dvy; double tmp; - // int x1, y1; - // int x2, y2; - if (this == other) {tw_error("SpaceObject::collide - self!");} if((!canCollide(other)) || (!other->canCollide(this))) return; --- 681,686 ---- *************** *** 702,712 **** p1 = p1 - size / 2; - /* x1 = (int)(normal_x() - (w / 2.0)); - y1 = (int)(normal_y() - (h / 2.0)); - dx = min_delta(normal_x(), other->normal_x(), map_size.x); - dy = min_delta(normal_y(), other->normal_y(), Y_MAX); - x2 = (int)(normal_x() - dx - ((other->w) / 2.0)); - y2 = (int)(normal_y() - dy - ((other->h) / 2.0));*/ - if (!sprite->collide((int)p1.x, (int)p1.y, sprite_index, (int)p2.x, (int)p2.y, other->sprite_index, other->sprite)) --- 697,700 ---- *************** *** 728,738 **** p1 = p1 - size / 2; - /*x1 = (int)(normal_x() - (w / 2.0)); - y1 = (int)(normal_y() - (h / 2.0)); - dx = min_delta(normal_x(), other->normal_x(), map_size.x); - dy = min_delta(normal_y(), other->normal_y(), Y_MAX); - x2 = (int)(normal_x() - dx - ((other->w) / 2.0)); - y2 = (int)(normal_y() - dy - ((other->h) / 2.0));*/ - while ((dp.x == 0) && (dp.y == 0)) { dp.x = (tw_random(5) - 2) / 99.0; --- 716,719 ---- *************** *** 927,960 **** } - /*void Listed::init(Presence *p) {STACKTRACE - pointer = p; - serial = p->get_serial(); - if (serial == 0) tw_error("bad serial #"); - } - - void Listed::clear() {STACKTRACE - pointer = NULL; - serial = 0; - } - - Presence *Physics::find_serial(int serial) {STACKTRACE - int i; - for (i = 0; i < num_presences; i += 1) { - if (presence[i]->_serial == serial) return presence[i]; - } - for (i = 0; i < num_presences; i += 1) { - if (item[i]->_serial == serial) return item[i]; - } - return NULL; - } - - int Physics::_find_serial(int serial) {STACKTRACE - int i; - for (i = 0; i < num_listed; i += 1) { - if (listed[i].serial == serial) return i; - } - return -1; - }*/ - void Physics::destroy_all() { STACKTRACE --- 908,911 ---- *************** *** 994,1001 **** last_ship = 0; last_team = 0; - //last_serial = 0; - //last_unsynched_serial = -1; - //listed = NULL; - //num_listed = max_listed = 0; return; } --- 945,948 ---- *************** *** 1005,1016 **** } - /*int Physics::new_serial() { - last_serial += 1; - return last_serial; - } - int Physics::new_unsynched_serial() { - last_unsynched_serial -= 1; - return last_unsynched_serial; - };*/ unsigned int Physics::new_ship() { last_ship += 1; --- 952,955 ---- *************** *** 1055,1077 **** } - /*void Physics::_list(Presence *p) {STACKTRACE - if (!p->exists()) return; - if (num_listed == max_listed) { - max_listed += 256; - listed = (Listed*) realloc(listed, sizeof(Listed) * max_listed); - } - if (p->attributes & ATTRIB_SYNCHED) { - p->_serial = new_serial(); - listed[num_listed].init(p); - } - else { - p->_serial = new_unsynched_serial(); - memmove(&listed[1], listed, sizeof(Listed) * num_listed); - listed[0].init(p); - } - num_listed += 1; - return; - }*/ - void Physics::add(SpaceLocation *o) { STACKTRACE; --- 994,997 ---- |
From: Yura S. <yu...@us...> - 2004-03-24 00:41:20
|
Update of /cvsroot/timewarp/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15617 Modified Files: scp.cpp Log Message: test Index: scp.cpp =================================================================== RCS file: /cvsroot/timewarp/source/scp.cpp,v retrieving revision 1.66 retrieving revision 1.67 diff -C2 -d -r1.66 -r1.67 *** scp.cpp 18 Mar 2004 23:38:37 -0000 1.66 --- scp.cpp 24 Mar 2004 00:30:48 -0000 1.67 *************** *** 1,2 **** --- 1,3 ---- + /* $Id$ */ /* * Star Control - TimeWarp |
From: Paul F. <you...@us...> - 2004-03-23 00:21:21
|
Update of /cvsroot/timewarp/Util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4089/Util Modified Files: timewarp.nsi Log Message: installer script forgot to copy palette (fixed now) Index: timewarp.nsi =================================================================== RCS file: /cvsroot/timewarp/Util/timewarp.nsi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** timewarp.nsi 21 Mar 2004 23:20:59 -0000 1.5 --- timewarp.nsi 23 Mar 2004 00:10:58 -0000 1.6 *************** *** 103,106 **** --- 103,107 ---- File "..\*.ini" File "..\*.txt" + File "..\palette" SetOutPath $INSTDIR\docs |
From: Yura S. <yu...@us...> - 2004-03-21 23:31:16
|
Update of /cvsroot/timewarp/Util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20141/Util Modified Files: timewarp.nsi Log Message: Updating documentation. TimeWarp site added to CVS. Fixing makefile for MinGW. Index: timewarp.nsi =================================================================== RCS file: /cvsroot/timewarp/Util/timewarp.nsi,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** timewarp.nsi 26 Feb 2004 17:45:51 -0000 1.4 --- timewarp.nsi 21 Mar 2004 23:20:59 -0000 1.5 *************** *** 47,51 **** !define MUI_FINISHPAGE_LINK "Visit the ${PRODUCT_NAME} website for the latest news" ! !define MUI_FINISHPAGE_LINK_LOCATION "http://www.classicgaming.com/starcontrol/timewarp/" !define MUI_FINISHPAGE_RUN "$INSTDIR\twwin.exe" --- 47,51 ---- !define MUI_FINISHPAGE_LINK "Visit the ${PRODUCT_NAME} website for the latest news" ! !define MUI_FINISHPAGE_LINK_LOCATION "http://timewarp.sf.net/" !define MUI_FINISHPAGE_RUN "$INSTDIR\twwin.exe" |