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: <or...@us...> - 2003-12-12 10:02:57
|
Update of /cvsroot/timewarp/source In directory sc8-pr-cvs1:/tmp/cvs-serv31371/source Modified Files: frame.cpp Log Message: chagned delete to delete[] Index: frame.cpp =================================================================== RCS file: /cvsroot/timewarp/source/frame.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** frame.cpp 20 Oct 2003 11:00:10 -0000 1.6 --- frame.cpp 11 Dec 2003 23:41:14 -0000 1.7 *************** *** 113,120 **** delete window; ! delete item; item_count = 0; ! delete old_item; old_item_count = 0; } --- 113,120 ---- delete window; ! delete[] item; item_count = 0; ! delete[] old_item; old_item_count = 0; } *************** *** 134,143 **** item = new DirtyItem[list_size + increment]; memcpy(item, temp, item_count * sizeof(DirtyItem)); ! delete temp; temp = old_item; old_item = new DirtyItem[list_size + increment]; memcpy(old_item, temp, old_item_count * sizeof(DirtyItem)); ! delete temp; list_size += increment; --- 134,143 ---- item = new DirtyItem[list_size + increment]; memcpy(item, temp, item_count * sizeof(DirtyItem)); ! delete[] temp; temp = old_item; old_item = new DirtyItem[list_size + increment]; memcpy(old_item, temp, old_item_count * sizeof(DirtyItem)); ! delete[] temp; list_size += increment; |
|
From: <or...@us...> - 2003-12-12 00:17:08
|
Update of /cvsroot/timewarp/source In directory sc8-pr-cvs1:/tmp/cvs-serv5301/source Modified Files: gui.cpp Log Message: chagned delete to delete[] Index: gui.cpp =================================================================== RCS file: /cvsroot/timewarp/source/gui.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** gui.cpp 11 Dec 2003 02:25:43 -0000 1.10 --- gui.cpp 12 Dec 2003 00:17:05 -0000 1.11 *************** *** 147,151 **** dialog[i].bg = old_sizes[i*6+5]; } ! delete old_sizes; if (player) i = shutdown_dialog ( player ); else i = -1; --- 147,151 ---- dialog[i].bg = old_sizes[i*6+5]; } ! delete[] old_sizes; if (player) i = shutdown_dialog ( player ); else i = -1; |
Update of /cvsroot/timewarp/source/melee
In directory sc8-pr-cvs1:/tmp/cvs-serv4941/source/melee
Modified Files:
mcbodies.cpp mcontrol.cpp mframe.cpp mgame.cpp mmain.cpp
mnet1.cpp mshpdata.cpp msprite.cpp
Log Message:
chagned delete to delete[]
Index: mcbodies.cpp
===================================================================
RCS file: /cvsroot/timewarp/source/melee/mcbodies.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** mcbodies.cpp 25 Oct 2003 14:30:20 -0000 1.6
--- mcbodies.cpp 12 Dec 2003 00:15:43 -0000 1.7
***************
*** 347,351 ****
Stars2::~Stars2() {STACKTRACE
! if (layer) delete layer;
}
--- 347,351 ----
Stars2::~Stars2() {STACKTRACE
! if (layer) free ( layer );
}
***************
*** 474,478 ****
int i;
for(i = 0; i < num_pics; i++) delete pic[i];
! delete pic;
}
--- 474,478 ----
int i;
for(i = 0; i < num_pics; i++) delete pic[i];
! delete[] pic;
}
Index: mcontrol.cpp
===================================================================
RCS file: /cvsroot/timewarp/source/melee/mcontrol.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** mcontrol.cpp 25 Nov 2003 00:13:08 -0000 1.11
--- mcontrol.cpp 12 Dec 2003 00:15:43 -0000 1.12
***************
*** 467,471 ****
}
Control::~Control() { STACKTRACE
! if (_prediction_keys) delete _prediction_keys;
}
bool Control::die() {
--- 467,471 ----
}
Control::~Control() { STACKTRACE
! if (_prediction_keys) delete[] _prediction_keys;
}
bool Control::die() {
Index: mframe.cpp
===================================================================
RCS file: /cvsroot/timewarp/source/melee/mframe.cpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** mframe.cpp 25 Nov 2003 00:13:09 -0000 1.17
--- mframe.cpp 12 Dec 2003 00:15:43 -0000 1.18
***************
*** 901,905 ****
Physics::~Physics() {STACKTRACE
destroy_all();
! if (quadrant) delete quadrant;
quadrant = NULL;
}
--- 901,905 ----
Physics::~Physics() {STACKTRACE
destroy_all();
! if (quadrant) delete[] quadrant;
quadrant = NULL;
}
Index: mgame.cpp
===================================================================
RCS file: /cvsroot/timewarp/source/melee/mgame.cpp,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** mgame.cpp 25 Nov 2003 00:13:09 -0000 1.24
--- mgame.cpp 12 Dec 2003 00:15:43 -0000 1.25
***************
*** 1086,1090 ****
int i;
for (i = 0; i < events_waiting; i += 1) free(waiting_events[i]);
! delete waiting_events;
message.out("deleteing histographs");
--- 1086,1090 ----
int i;
for (i = 0; i < events_waiting; i += 1) free(waiting_events[i]);
! delete[] waiting_events;
message.out("deleteing histographs");
Index: mmain.cpp
===================================================================
RCS file: /cvsroot/timewarp/source/melee/mmain.cpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** mmain.cpp 21 Nov 2003 10:23:21 -0000 1.17
--- mmain.cpp 12 Dec 2003 00:15:43 -0000 1.18
***************
*** 562,566 ****
}
! delete slot;
message.out("Finished selecting ships...", 1500);
unpause();
--- 562,566 ----
}
! delete[] slot;
message.out("Finished selecting ships...", 1500);
unpause();
Index: mnet1.cpp
===================================================================
RCS file: /cvsroot/timewarp/source/melee/mnet1.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** mnet1.cpp 25 Nov 2003 00:13:11 -0000 1.5
--- mnet1.cpp 12 Dec 2003 00:15:43 -0000 1.6
***************
*** 1,2 ****
--- 1,5 ----
+ #include <stdlib.h>
+ #include <stdio.h>
+ #include <string.h>
#include <allegro.h>
#include "../melee.h"
***************
*** 5,13 ****
#include "mview.h"
#include "mcontrol.h"
! #include "mcbodies.h"
#include "../scp.h"
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
GameEventMessage::GameEventMessage (const char *text)
--- 8,13 ----
#include "mview.h"
#include "mcontrol.h"
! //#include "mcbodies.h"
#include "../scp.h"
GameEventMessage::GameEventMessage (const char *text)
Index: mshpdata.cpp
===================================================================
RCS file: /cvsroot/timewarp/source/melee/mshpdata.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** mshpdata.cpp 11 Oct 2003 21:01:01 -0000 1.4
--- mshpdata.cpp 12 Dec 2003 00:15:43 -0000 1.5
***************
*** 235,239 ****
int i;
for (i = 0; i < num_more_sprites; i += 1) delete more_sprites[i];
! delete more_sprites;
more_sprites = NULL;
num_more_sprites = 0;
--- 235,239 ----
int i;
for (i = 0; i < num_more_sprites; i += 1) delete more_sprites[i];
! delete[] more_sprites;
more_sprites = NULL;
num_more_sprites = 0;
***************
*** 465,469 ****
ShipData::~ShipData()
{
! if(spriteShip)
delete spriteShip;
if(spriteWeapon)
--- 465,470 ----
ShipData::~ShipData()
{
! unload();
! /* if(spriteShip)
delete spriteShip;
if(spriteWeapon)
***************
*** 481,485 ****
delete spritePanel;
! unload_datafile(data);
free(file);
--- 482,486 ----
delete spritePanel;
! unload_datafile(data);*/
free(file);
Index: msprite.cpp
===================================================================
RCS file: /cvsroot/timewarp/source/melee/msprite.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** msprite.cpp 25 Nov 2003 00:13:12 -0000 1.11
--- msprite.cpp 12 Dec 2003 00:15:43 -0000 1.12
***************
*** 351,355 ****
}
}
! delete tmp;
PMASK **tmp2 = new PMASK*[count];
--- 351,355 ----
}
}
! delete[] tmp;
PMASK **tmp2 = new PMASK*[count];
***************
*** 363,367 ****
}
}
! delete tmp2;
return;
}
--- 363,367 ----
}
}
! delete[] tmp2;
return;
}
***************
*** 766,770 ****
if (attributes[i] & DEALLOCATE_MASK) destroy_pmask(m[i]);
}
! delete m;
m = NULL;
--- 766,770 ----
if (attributes[i] & DEALLOCATE_MASK) destroy_pmask(m[i]);
}
! delete[] m;
m = NULL;
***************
*** 777,781 ****
}
! delete attributes;
attributes = NULL;
return;
--- 777,781 ----
}
! delete[] attributes;
attributes = NULL;
return;
|
|
From: <you...@us...> - 2003-12-12 00:07:48
|
Update of /cvsroot/timewarp/source
In directory sc8-pr-cvs1:/tmp/cvs-serv28902/source
Modified Files:
scp.cpp
Log Message:
fixed crash in fleet editor ship preview ... does this still crash for anyone?
Index: scp.cpp
===================================================================
RCS file: /cvsroot/timewarp/source/scp.cpp,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** scp.cpp 3 Dec 2003 07:50:20 -0000 1.28
--- scp.cpp 11 Dec 2003 23:26:23 -0000 1.29
***************
*** 1262,1265 ****
--- 1262,1266 ----
};
+ bool safeToDrawPreview = false;
// FLEET - dialog function
***************
*** 1303,1310 ****
fleetDialog[FLEET_DIALOG_SORTBY_BUTTON2].dp = Fleet::getSortingMethodName(sortMethod2);
if (fleet->getCost() > fleet->getMaxCost())
! sprintf(fleetCostString,"!! %d !!", fleet->getCost());
else
! sprintf(fleetCostString,"%d", fleet->getCost());
sprintf(maxFleetCostString,"%d %s", fleet->getMaxCost(),
--- 1304,1312 ----
fleetDialog[FLEET_DIALOG_SORTBY_BUTTON2].dp = Fleet::getSortingMethodName(sortMethod2);
+ sprintf(fleetCostString,"%d", fleet->getCost());
if (fleet->getCost() > fleet->getMaxCost())
! fleetDialog[FLEET_DIALOG_CURRENT_POINTS_VALUE].bg = makecol8(255,0,0);
else
! fleetDialog[FLEET_DIALOG_CURRENT_POINTS_VALUE].bg = 0;
sprintf(maxFleetCostString,"%d %s", fleet->getMaxCost(),
***************
*** 1397,1401 ****
break;
! case FLEET_DIALOG_FLEET_SHIPS_LIST: break;
case FLEET_DIALOG_AVAILABLE_SHIPS_LIST:
--- 1399,1404 ----
break;
!
!
case FLEET_DIALOG_AVAILABLE_SHIPS_LIST:
***************
*** 1415,1420 ****
break;
! case FLEET_DIALOG_SAVE_BUTTON: break;
! case FLEET_DIALOG_LOAD_BUTTON: break;
case FLEET_DIALOG_POINT_LIMIT_TEXT: break;
--- 1418,1435 ----
break;
! case FLEET_DIALOG_SAVE_BUTTON:
! sprintf(path, "fleets/");
! if(file_select("Save Fleet", path, "scf")) fleet->save(path, "Fleet");
! showTitle();
! break;
!
! case FLEET_DIALOG_LOAD_BUTTON:
! sprintf(path, "fleets/");
! if(file_select("Load Fleet", path, "scf")) fleet->load(path, "Fleet");
! sprintf(title_str, fleet->getTitle());
! sprintf(fleetTitleString, "%s\n%d points", fleet->getTitle(), fleet->getCost());
! showTitle();
! break;
!
case FLEET_DIALOG_POINT_LIMIT_TEXT: break;
***************
*** 1442,1450 ****
break;
! case FLEET_DIALOG_ADD_ALL_BUTTON: break;
! case FLEET_DIALOG_CLEAR: break;
! case FLEET_DIALOG_CLEARALL: break;
case FLEET_DIALOG_SHIP_PICTURE_BITMAP: break;
! //case FLEET_DIALOG_SHIP_STATS_BITMAP: break;
case FLEET_DIALOG_SHIP_SUMMARY_TEXT: break;
case FLEET_DIALOG_BACK_BUTTON: break;
--- 1457,1478 ----
break;
! case FLEET_DIALOG_ADD_ALL_BUTTON:
! fleet->addFleet(reference_fleet);
! break;
!
! case FLEET_DIALOG_CLEAR:
! case FLEET_DIALOG_FLEET_SHIPS_LIST:
! fleet->clear_slot(fleetDialog[FLEET_DIALOG_FLEET_SHIPS_LIST].d1);
! if (fleet->getSize() <= 0)
! fleetDialog[FLEET_DIALOG_FLEET_SHIPS_LIST].d1 = 0;
! break;
!
! case FLEET_DIALOG_CLEARALL:
! fleet->reset();
! fleetDialog[FLEET_DIALOG_FLEET_SHIPS_LIST].d1 = 0;
! break;
!
case FLEET_DIALOG_SHIP_PICTURE_BITMAP: break;
!
case FLEET_DIALOG_SHIP_SUMMARY_TEXT: break;
case FLEET_DIALOG_BACK_BUTTON: break;
***************
*** 1453,1492 ****
;
}
-
- /*if ((fleetRet == FLEET_DIALOG_SELECT) ||
- (fleetRet == FLEET_DIALOG_AVAILABLE_SHIPS_LIST)) {
-
- }*/
-
- if (fleetRet == FLEET_DIALOG_ADD_ALL_BUTTON) {
- fleet->addFleet(reference_fleet);
- }
-
- if ((fleetRet == FLEET_DIALOG_CLEAR) ||
- (fleetRet == FLEET_DIALOG_FLEET_SHIPS_LIST)) {
- fleet->clear_slot(fleetDialog[FLEET_DIALOG_FLEET_SHIPS_LIST].d1);
- if (fleet->getSize() <= 0)
- fleetDialog[FLEET_DIALOG_FLEET_SHIPS_LIST].d1 = 0;
- }
-
- if(fleetRet == FLEET_DIALOG_CLEARALL) {
- fleet->reset();
- fleetDialog[FLEET_DIALOG_FLEET_SHIPS_LIST].d1 = 0;
- }
-
- if(fleetRet == FLEET_DIALOG_SAVE_BUTTON) {
- sprintf(path, "fleets/");
- if(file_select("Save Fleet", path, "scf")) fleet->save(path, "Fleet");
- showTitle();
- }
-
- if(fleetRet == FLEET_DIALOG_LOAD_BUTTON) {
- sprintf(path, "fleets/");
- if(file_select("Load Fleet", path, "scf")) fleet->load(path, "Fleet");
- sprintf(title_str, fleet->getTitle());
- sprintf(fleetTitleString, "%s\n%d points", fleet->getTitle(), fleet->getCost());
- showTitle();
- }
-
/*if (fleetRet == FLEET_DIALOG_INFO) {
ship_view_dialog(fleetDialog[FLEET_DIALOG_FLEET_SHIPS_LIST].d1, reference_fleet);
--- 1481,1484 ----
***************
*** 1494,1514 ****
}*/
- /*if(fleetRet == FLEET_DIALOG_SORTBYNAME_BUTTON) {
- reference_fleet->Sort(Fleet::SORTING_METHOD_NAME_DESCENDING);
- }
-
- if(fleetRet == FLEET_DIALOG_SORTBYCOST_BUTTON) {
- reference_fleet->Sort(Fleet::SORTING_METHOD_COST_DESCENDING);
- }
-
- if(fleetRet == FLEET_DIALOG_SORTBYORIGIN_BUTTON) {
- reference_fleet->Sort(Fleet::SORTING_METHOD_ORIGIN_DESCENDING);
- }
-
- if(fleetRet == FLEET_DIALOG_SORTBYCODERS_BUTTON) {
- reference_fleet->Sort(Fleet::SORTING_METHOD_CODERS_DESCENDING);
- }*/
-
-
} while((fleetRet != FLEET_DIALOG_BACK_BUTTON) && (fleetRet != -1));
--- 1486,1489 ----
***************
*** 1535,1538 ****
--- 1510,1515 ----
//selection has changed
if (d->d1 != old_d1) {
+ safeToDrawPreview = false;
+
{ShipType* type = reference_fleet->getShipType(old_d1);
if (type && type->data)
***************
*** 1546,1550 ****
}
! if ( d->d1 != old_d1 || msg == MSG_START || (msg == MSG_IDLE && next_anim_time < get_time()) ) {
//next_anim_time = get_time() + 50 + rand() % 200;
next_anim_time = get_time() + 20;
--- 1523,1530 ----
}
! if ( ( d->d1 != old_d1 || msg == MSG_START) ||
! (msg == MSG_IDLE && next_anim_time < get_time()) ) {
! safeToDrawPreview = false;
!
//next_anim_time = get_time() + 50 + rand() % 200;
next_anim_time = get_time() + 20;
***************
*** 1568,1571 ****
--- 1548,1552 ----
}
stretch_blit(sprite, panel, 0, 0, sprite->w, sprite->h, 0, 0, panel->w, panel->h);
+ safeToDrawPreview = true;
***************
*** 1636,1640 ****
}*/
! if (msg != MSG_DRAW || d->dp)
return d_bitmap_proc(msg, d, c);
return D_O_K;
--- 1617,1621 ----
}*/
! if ((msg != MSG_DRAW || d->dp) && (safeToDrawPreview) )
return d_bitmap_proc(msg, d, c);
return D_O_K;
***************
*** 1726,1734 ****
}
else {
ShipType *type = reference_fleet->getShipType(si);
PACKFILE *f;
//DATAFILE *d;
! if (sprite)
destroy_bitmap(sprite);
sprite = NULL;
--- 1707,1716 ----
}
else {
+
ShipType *type = reference_fleet->getShipType(si);
PACKFILE *f;
//DATAFILE *d;
! if (sprite)
destroy_bitmap(sprite);
sprite = NULL;
***************
*** 1744,1747 ****
--- 1726,1730 ----
}
type->data->unlock();
+
// d = load_datafile_object(type->data->file, "SHIP_P00_PCX");
|
|
From: <geo...@us...> - 2003-12-11 22:49:53
|
Update of /cvsroot/timewarp/interfaces/selectmission/popupinfo In directory sc8-pr-cvs1:/tmp/cvs-serv21550/selectmission/popupinfo Modified Files: backgr.bmp info.txt Log Message: updating the interface Index: backgr.bmp =================================================================== RCS file: /cvsroot/timewarp/interfaces/selectmission/popupinfo/backgr.bmp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsDvPlUv and /tmp/cvs4JdoJW differ Index: info.txt =================================================================== RCS file: /cvsroot/timewarp/interfaces/selectmission/popupinfo/info.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** info.txt 26 Oct 2003 10:43:16 -0000 1.2 --- info.txt 11 Dec 2003 22:49:50 -0000 1.3 *************** *** 1 **** --- 1,5 ---- + interfaces/selectmission/popupinfo/text/barver_backgr_y = 29 + interfaces/selectmission/popupinfo/text/barver_backgr_x = 30 + interfaces/selectmission/popupinfo/text/backgr_y = 32 + interfaces/selectmission/popupinfo/text/backgr_x = 83 res = 800 |
|
From: <geo...@us...> - 2003-12-11 22:49:53
|
Update of /cvsroot/timewarp/interfaces/selectmission/briefing In directory sc8-pr-cvs1:/tmp/cvs-serv21550/selectmission/briefing Modified Files: backgr.bmp info.txt Log Message: updating the interface Index: backgr.bmp =================================================================== RCS file: /cvsroot/timewarp/interfaces/selectmission/briefing/backgr.bmp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsH5Krob and /tmp/cvsUghIgf differ Index: info.txt =================================================================== RCS file: /cvsroot/timewarp/interfaces/selectmission/briefing/info.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** info.txt 26 Oct 2003 10:43:16 -0000 1.2 --- info.txt 11 Dec 2003 22:49:49 -0000 1.3 *************** *** 1 **** --- 1,14 ---- + interfaces/selectmission/briefing/right_default_y = 35 + interfaces/selectmission/briefing/right_default_x = 400 + interfaces/selectmission/briefing/left_default_y = 35 + interfaces/selectmission/briefing/left_default_x = 19 + interfaces/selectmission/briefing/title_backgr_y = 42 + interfaces/selectmission/briefing/title_backgr_x = 81 + interfaces/selectmission/briefing/quit_default_y = 119 + interfaces/selectmission/briefing/quit_default_x = 344 + interfaces/selectmission/briefing/accept_default_y = 96 + interfaces/selectmission/briefing/accept_default_x = 144 + interfaces/selectmission/briefing/info_backgr_y = 110 + interfaces/selectmission/briefing/info_backgr_x = 79 + res = 800 |
|
From: <geo...@us...> - 2003-12-11 22:49:53
|
Update of /cvsroot/timewarp/interfaces/gametest/alert In directory sc8-pr-cvs1:/tmp/cvs-serv21550/gametest/alert Modified Files: info.txt Log Message: updating the interface Index: info.txt =================================================================== RCS file: /cvsroot/timewarp/interfaces/gametest/alert/info.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** info.txt 26 Oct 2003 10:43:16 -0000 1.2 --- info.txt 11 Dec 2003 22:49:48 -0000 1.3 *************** *** 1 **** --- 1,7 ---- + interfaces/gametest/alert/no_default_y = 63 + interfaces/gametest/alert/no_default_x = 138 + interfaces/gametest/alert/text_backgr_y = 15 + interfaces/gametest/alert/text_backgr_x = 16 + interfaces/gametest/alert/yes_default_y = 63 + interfaces/gametest/alert/yes_default_x = 38 res = 800 |
|
From: <geo...@us...> - 2003-12-11 22:49:53
|
Update of /cvsroot/timewarp/interfaces/gametest/melee In directory sc8-pr-cvs1:/tmp/cvs-serv21550/gametest/melee Modified Files: info.txt Log Message: updating the interface Index: info.txt =================================================================== RCS file: /cvsroot/timewarp/interfaces/gametest/melee/info.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** info.txt 26 Oct 2003 10:43:16 -0000 1.2 --- info.txt 11 Dec 2003 22:49:49 -0000 1.3 *************** *** 1 **** --- 1,33 ---- + interfaces/gametest/melee/text_backgr_y = 44 + interfaces/gametest/melee/text_backgr_x = 14 + interfaces/gametest/melee/viewmode_default_y = 80 + interfaces/gametest/melee/viewmode_default_x = 364 + interfaces/gametest/melee/callhelp_default_y = 94 + interfaces/gametest/melee/callhelp_default_x = 308 + interfaces/gametest/melee/snapshot_default_y = 74 + interfaces/gametest/melee/snapshot_default_x = 252 + interfaces/gametest/melee/extraplanet_default_y = 112 + interfaces/gametest/melee/extraplanet_default_x = 254 + interfaces/gametest/melee/abort_default_y = 97 + interfaces/gametest/melee/abort_default_x = 137 + interfaces/gametest/melee/zoomout_default_y = 98 + interfaces/gametest/melee/zoomout_default_x = 447 + interfaces/gametest/melee/zoomin_default_y = 48 + interfaces/gametest/melee/zoomin_default_x = 447 + interfaces/gametest/melee/chatlog_on_y = 95 + interfaces/gametest/melee/chatlog_on_x = 534 + interfaces/gametest/melee/cptpanel_on_y = 95 + interfaces/gametest/melee/cptpanel_on_x = 534 + interfaces/gametest/melee/wedgeindic_on_y = 43 + interfaces/gametest/melee/wedgeindic_on_x = 534 + interfaces/gametest/melee/healthbars_on_y = 69 + interfaces/gametest/melee/healthbars_on_x = 534 + interfaces/gametest/melee/viewscreen_on_y = 113 + interfaces/gametest/melee/viewscreen_on_x = 210 + interfaces/twgui2/melee/abort_default_y = 97 + interfaces/twgui2/melee/abort_default_x = 137 + interfaces/twgui2/melee/zoomout_default_y = 98 + interfaces/twgui2/melee/zoomout_default_x = 447 + interfaces/twgui2/melee/zoomin_default_y = 48 + interfaces/twgui2/melee/zoomin_default_x = 447 res = 800 |
|
From: <geo...@us...> - 2003-12-11 22:49:53
|
Update of /cvsroot/timewarp/interfaces/gflmelee In directory sc8-pr-cvs1:/tmp/cvs-serv21550/gflmelee Modified Files: info.txt Log Message: updating the interface Index: info.txt =================================================================== RCS file: /cvsroot/timewarp/interfaces/gflmelee/info.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** info.txt 26 Oct 2003 14:36:17 -0000 1.1 --- info.txt 11 Dec 2003 22:49:49 -0000 1.2 *************** *** 1 **** --- 1,33 ---- + interfaces/gflmelee/text2_backgr_y = 198 + interfaces/gflmelee/text2_backgr_x = 289 + interfaces/gflmelee/text1_backgr_y = 55 + interfaces/gflmelee/text1_backgr_x = 12 + interfaces/gflmelee/ok_default_y = 120 + interfaces/gflmelee/ok_default_x = 184 + interfaces/gflmelee/down2_default_y = 239 + interfaces/gflmelee/down2_default_x = 315 + interfaces/gflmelee/up2_default_y = 166 + interfaces/gflmelee/up2_default_x = 310 + interfaces/gflmelee/down1_default_y = 96 + interfaces/gflmelee/down1_default_x = 38 + interfaces/gflmelee/up1_default_y = 23 + interfaces/gflmelee/up1_default_x = 34 + interfaces/gflmelee/text2/backgr_y = 198 + interfaces/gflmelee/text2/backgr_x = 289 + interfaces/gflmelee/text1/backgr_y = 55 + interfaces/gflmelee/text1/backgr_x = 12 + interfaces/gflmelee/ok/default_y = 120 + interfaces/gflmelee/ok/default_x = 184 + interfaces/gflmelee/down2/default_y = 239 + interfaces/gflmelee/down2/default_x = 315 + interfaces/gflmelee/up2/default_y = 166 + interfaces/gflmelee/up2/default_x = 310 + interfaces/gflmelee/down1/default_y = 96 + interfaces/gflmelee/down1/default_x = 38 + interfaces/gflmelee/up1/default_y = 23 + interfaces/gflmelee/up1/default_x = 34 res = 800 + + [FleetInit] + PlayerAlliance = 7 + EnemyAlliance = 8 |
|
From: <geo...@us...> - 2003-12-11 22:49:53
|
Update of /cvsroot/timewarp/interfaces/gametest/popuphelp In directory sc8-pr-cvs1:/tmp/cvs-serv21550/gametest/popuphelp Modified Files: backgr.bmp info.txt Log Message: updating the interface Index: backgr.bmp =================================================================== RCS file: /cvsroot/timewarp/interfaces/gametest/popuphelp/backgr.bmp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsIULBMF and /tmp/cvs8gTuOe differ Index: info.txt =================================================================== RCS file: /cvsroot/timewarp/interfaces/gametest/popuphelp/info.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** info.txt 26 Oct 2003 10:43:16 -0000 1.2 --- info.txt 11 Dec 2003 22:49:49 -0000 1.3 *************** *** 1 **** --- 1,11 ---- + interfaces/gametest/popuphelp/text/close_default_y = 213 + interfaces/gametest/popuphelp/text/close_default_x = 558 + interfaces/gametest/popuphelp/text/barver_backgr_y = 14 + interfaces/gametest/popuphelp/text/barver_backgr_x = 33 + interfaces/gametest/popuphelp/text/down_default_y = 51 + interfaces/gametest/popuphelp/text/down_default_x = 7 + interfaces/gametest/popuphelp/text/up_default_y = 3 + interfaces/gametest/popuphelp/text/up_default_x = 7 + interfaces/gametest/popuphelp/text/backgr_y = 21 + interfaces/gametest/popuphelp/text/backgr_x = 66 res = 800 |
|
From: <geo...@us...> - 2003-12-11 22:49:53
|
Update of /cvsroot/timewarp/interfaces/gametest/popuplist In directory sc8-pr-cvs1:/tmp/cvs-serv21550/gametest/popuplist Modified Files: info.txt Log Message: updating the interface Index: info.txt =================================================================== RCS file: /cvsroot/timewarp/interfaces/gametest/popuplist/info.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** info.txt 26 Oct 2003 10:43:16 -0000 1.2 --- info.txt 11 Dec 2003 22:49:49 -0000 1.3 *************** *** 1 **** --- 1,9 ---- + interfaces/gametest/popuplist/text/barver_backgr_y = 16 + interfaces/gametest/popuplist/text/barver_backgr_x = 68 + interfaces/gametest/popuplist/text/down_default_y = 62 + interfaces/gametest/popuplist/text/down_default_x = 23 + interfaces/gametest/popuplist/text/up_default_y = 14 + interfaces/gametest/popuplist/text/up_default_x = 23 + interfaces/gametest/popuplist/text/backgr_y = 16 + interfaces/gametest/popuplist/text/backgr_x = 96 res = 800 |
|
From: <geo...@us...> - 2003-12-11 22:49:52
|
Update of /cvsroot/timewarp/interfaces/selectmission/alertwin In directory sc8-pr-cvs1:/tmp/cvs-serv21550/selectmission/alertwin Modified Files: info.txt Log Message: updating the interface Index: info.txt =================================================================== RCS file: /cvsroot/timewarp/interfaces/selectmission/alertwin/info.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** info.txt 26 Oct 2003 10:43:16 -0000 1.2 --- info.txt 11 Dec 2003 22:49:49 -0000 1.3 *************** *** 1 **** --- 1,5 ---- + interfaces/selectmission/alertwin/ok_default_y = 299 + interfaces/selectmission/alertwin/ok_default_x = 137 + interfaces/selectmission/alertwin/OK/default_y = 299 + interfaces/selectmission/alertwin/OK/default_x = 137 res = 800 |
|
From: <geo...@us...> - 2003-12-11 22:49:52
|
Update of /cvsroot/timewarp/interfaces/selectmission/alertlose In directory sc8-pr-cvs1:/tmp/cvs-serv21550/selectmission/alertlose Modified Files: info.txt Log Message: updating the interface Index: info.txt =================================================================== RCS file: /cvsroot/timewarp/interfaces/selectmission/alertlose/info.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** info.txt 26 Oct 2003 10:43:16 -0000 1.2 --- info.txt 11 Dec 2003 22:49:49 -0000 1.3 *************** *** 1 **** --- 1,9 ---- + interfaces/selectmission/alertlose/no_default_y = 229 + interfaces/selectmission/alertlose/no_default_x = 6 + interfaces/selectmission/alertlose/yes_default_y = 231 + interfaces/selectmission/alertlose/yes_default_x = 282 + interfaces/selectmission/alertlose/NO/default_y = 229 + interfaces/selectmission/alertlose/NO/default_x = 6 + interfaces/selectmission/alertlose/YES/default_y = 231 + interfaces/selectmission/alertlose/YES/default_x = 282 res = 800 |
|
From: <geo...@us...> - 2003-12-11 22:49:52
|
Update of /cvsroot/timewarp/interfaces/gametest/popupfleet In directory sc8-pr-cvs1:/tmp/cvs-serv21550/gametest/popupfleet Modified Files: info.txt Log Message: updating the interface Index: info.txt =================================================================== RCS file: /cvsroot/timewarp/interfaces/gametest/popupfleet/info.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** info.txt 26 Oct 2003 10:43:16 -0000 1.2 --- info.txt 11 Dec 2003 22:49:49 -0000 1.3 *************** *** 1 **** --- 1,29 ---- + interfaces/gametest/popupfleet/alwaysrandom_default_y = 174 + interfaces/gametest/popupfleet/alwaysrandom_default_x = 7 + interfaces/gametest/popupfleet/random_default_y = 118 + interfaces/gametest/popupfleet/random_default_x = 7 + interfaces/gametest/popupfleet/info_backgr_y = 9 + interfaces/gametest/popupfleet/info_backgr_x = 88 + interfaces/gametest/popupfleet/icon_barver_backgr_y = 85 + interfaces/gametest/popupfleet/icon_barver_backgr_x = 32 + interfaces/gametest/popupfleet/icon_down_default_y = 57 + interfaces/gametest/popupfleet/icon_down_default_x = 33 + interfaces/gametest/popupfleet/icon_up_default_y = 6 + interfaces/gametest/popupfleet/icon_up_default_x = 34 + interfaces/gametest/popupfleet/icon_barhor_backgr_y = 32 + interfaces/gametest/popupfleet/icon_barhor_backgr_x = 86 + interfaces/gametest/popupfleet/icon_right_default_y = 34 + interfaces/gametest/popupfleet/icon_right_default_x = 57 + interfaces/gametest/popupfleet/icon_left_default_y = 34 + interfaces/gametest/popupfleet/icon_left_default_x = 5 + interfaces/gametest/popupfleet/icon_backgr_y = 66 + interfaces/gametest/popupfleet/icon_backgr_x = 66 + interfaces/gametest/popupfleet/ALWAYSRANDOM/default_y = 174 + interfaces/gametest/popupfleet/ALWAYSRANDOM/default_x = 7 + interfaces/gametest/popupfleet/RANDOM/default_y = 118 + interfaces/gametest/popupfleet/RANDOM/default_x = 7 + interfaces/gametest/popupfleet/INFO/backgr_y = 9 + interfaces/gametest/popupfleet/INFO/backgr_x = 88 + interfaces/gametest/popupfleet/ICON/backgr_y = 66 + interfaces/gametest/popupfleet/ICON/backgr_x = 66 res = 800 |
|
From: <you...@us...> - 2003-12-11 20:47:31
|
Update of /cvsroot/timewarp/source/melee
In directory sc8-pr-cvs1:/tmp/cvs-serv28583/source/melee
Modified Files:
mfleet.cpp
Log Message:
fixed a memory leak in mfleet, in the fleet selection sorting methods
Index: mfleet.cpp
===================================================================
RCS file: /cvsroot/timewarp/source/melee/mfleet.cpp,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** mfleet.cpp 25 Nov 2003 00:13:09 -0000 1.16
--- mfleet.cpp 11 Dec 2003 20:47:28 -0000 1.17
***************
*** 292,296 ****
return false;
! return (strncmp(tmp1,tmp2,80) > 0);
}
};/**/
--- 292,300 ----
return false;
! bool result = (strncmp(tmp1,tmp2,80) > 0);
! free(tmp1);
! free(tmp2);
!
! return result;
}
};/**/
***************
*** 313,317 ****
return false;
! return (strncmp(tmp1,tmp2,80) < 0);
}
};/**/
--- 317,327 ----
return false;
! bool result = (strncmp(tmp1,tmp2,80) < 0);
!
! free(tmp1);
! free(tmp2);
!
! return result;
!
}
};/**/
|
|
From: <or...@us...> - 2003-12-11 20:17:14
|
Update of /cvsroot/timewarp In directory sc8-pr-cvs1:/tmp/cvs-serv21894 Modified Files: twwin.dsp Log Message: another lua .lib fix |
|
From: <or...@us...> - 2003-12-11 20:17:14
|
Update of /cvsroot/timewarp/lib In directory sc8-pr-cvs1:/tmp/cvs-serv21894/lib Modified Files: lua.lib Added Files: luad.lib Log Message: another lua .lib fix --- NEW FILE: luad.lib --- (This appears to be a binary file; contents omitted.) Index: lua.lib =================================================================== RCS file: /cvsroot/timewarp/lib/lua.lib,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvs3NYXhb and /tmp/cvssg5Zad differ |
|
From: <or...@us...> - 2003-12-11 02:25:46
|
Update of /cvsroot/timewarp/source
In directory sc8-pr-cvs1:/tmp/cvs-serv26120/source
Modified Files:
gui.cpp melee.h
Log Message:
GUI redraw fix
Index: gui.cpp
===================================================================
RCS file: /cvsroot/timewarp/source/gui.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** gui.cpp 15 Nov 2003 20:48:06 -0000 1.9
--- gui.cpp 11 Dec 2003 02:25:43 -0000 1.10
***************
*** 63,66 ****
--- 63,82 ----
}
+ void TW_Dialog_Player::redraw() {
+ int i;
+ for (i = 0; player->dialog[i].proc; i++) player->dialog[i].flags |= D_DIRTY;
+ update();
+ return;
+ }
+
+ void TW_Dialog_Player::_event( Event * e) {
+ switch (e->type) {
+ case Event::VIDEO: {
+ if (e->subtype == VideoEvent::REDRAW)
+ this->redraw();
+ } break;
+ }
+ }
+
void TW_Dialog_Player::init(VideoWindow *w, DIALOG *d, int focus) {
dialog = d;
***************
*** 69,72 ****
--- 85,89 ----
player = NULL;
if (!window) window = &videosystem.window;
+ window->add_callback(this);
int i;
for (i = 0; d[i].proc; i += 1) ;
***************
*** 115,118 ****
--- 132,136 ----
void TW_Dialog_Player::deinit() {
int i;
+ window->remove_callback(this);
dialog[length].d2 -= 1;
if (dialog[length].d2 != level) {
Index: melee.h
===================================================================
RCS file: /cvsroot/timewarp/source/melee.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** melee.h 21 Nov 2003 10:24:28 -0000 1.10
--- melee.h 11 Dec 2003 02:25:43 -0000 1.11
***************
*** 614,618 ****
//gui.h
! class TW_Dialog_Player {
public:
struct DIALOG_PLAYER *player;
--- 614,618 ----
//gui.h
! class TW_Dialog_Player : public BaseClass {
public:
struct DIALOG_PLAYER *player;
***************
*** 625,629 ****
--- 625,631 ----
void init ( VideoWindow *window, DIALOG *dialog, int index = 0);
int update ();
+ void redraw ();
void deinit ();
+ virtual void _event( Event * e);
};
struct DIALOG;
|
|
From: <or...@us...> - 2003-12-11 02:03:31
|
Update of /cvsroot/timewarp/source/games
In directory sc8-pr-cvs1:/tmp/cvs-serv22702/source/games
Modified Files:
dialog.cpp dialog.h
Log Message:
lua #include fix
Index: dialog.cpp
===================================================================
RCS file: /cvsroot/timewarp/source/games/dialog.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** dialog.cpp 21 Nov 2003 20:33:20 -0000 1.2
--- dialog.cpp 11 Dec 2003 02:03:28 -0000 1.3
***************
*** 1,7 ****
#include <string.h>
! #include <lua.h>
! #include <lualib.h>
! #include <lauxlib.h>
#include <allegro.h>
--- 1,9 ----
#include <string.h>
! extern "C" {
! # include "lua.h"
! # include "lualib.h"
! # include "lauxlib.h"
! }
#include <allegro.h>
Index: dialog.h
===================================================================
RCS file: /cvsroot/timewarp/source/games/dialog.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** dialog.h 21 Nov 2003 08:29:01 -0000 1.1
--- dialog.h 11 Dec 2003 02:03:28 -0000 1.2
***************
*** 9,13 ****
#define __DIALOG_MODULE__
! #include <lua.h>
#include <allegro.h>
--- 9,15 ----
#define __DIALOG_MODULE__
! extern "C" {
! # include "lua.h"
! }
#include <allegro.h>
|
|
From: <or...@us...> - 2003-12-11 01:59:54
|
Update of /cvsroot/timewarp/include In directory sc8-pr-cvs1:/tmp/cvs-serv21839/include Modified Files: lauxlib.h lua.h lualib.h Log Message: dunno if this helps anything (lua) Index: lauxlib.h =================================================================== RCS file: /cvsroot/timewarp/include/lauxlib.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Index: lua.h =================================================================== RCS file: /cvsroot/timewarp/include/lua.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Index: lualib.h =================================================================== RCS file: /cvsroot/timewarp/include/lualib.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 |
|
From: <or...@us...> - 2003-12-11 01:24:10
|
Update of /cvsroot/timewarp/lib In directory sc8-pr-cvs1:/tmp/cvs-serv17090/lib Modified Files: lua.lib Log Message: fixed (I think) lua.lib Index: lua.lib =================================================================== RCS file: /cvsroot/timewarp/lib/lua.lib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvskcf8ms and /tmp/cvsw1i3mL differ |
|
From: <or...@us...> - 2003-12-06 02:21:16
|
Update of /cvsroot/timewarp/lib In directory sc8-pr-cvs1:/tmp/cvs-serv21687/lib Added Files: lua.lib Log Message: added lua library --- NEW FILE: lua.lib --- (This appears to be a binary file; contents omitted.) |
|
From: <or...@us...> - 2003-12-06 02:21:16
|
Update of /cvsroot/timewarp In directory sc8-pr-cvs1:/tmp/cvs-serv21687 Modified Files: twwin.dsp Log Message: added lua library |
|
From: <or...@us...> - 2003-12-06 02:21:16
|
Update of /cvsroot/timewarp/include
In directory sc8-pr-cvs1:/tmp/cvs-serv21687/include
Modified Files:
lauxlib.h lua.h lualib.h
Log Message:
added lua library
Index: lauxlib.h
===================================================================
RCS file: /cvsroot/timewarp/include/lauxlib.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** lauxlib.h 21 Nov 2003 20:32:00 -0000 1.2
--- lauxlib.h 6 Dec 2003 02:21:13 -0000 1.3
***************
*** 9,15 ****
#define lauxlib_h
- #ifdef __cplusplus
- extern "C" {
- #endif
#include <stddef.h>
--- 9,12 ----
***************
*** 143,149 ****
#define luaL_opt_long luaL_optlong
- #ifdef __cplusplus
- }
- #endif
#endif
--- 140,143 ----
Index: lua.h
===================================================================
RCS file: /cvsroot/timewarp/include/lua.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** lua.h 21 Nov 2003 20:32:01 -0000 1.2
--- lua.h 6 Dec 2003 02:21:13 -0000 1.3
***************
*** 11,18 ****
#define lua_h
- #ifdef __cplusplus
- extern "C" {
- #endif
-
#include <stdarg.h>
#include <stddef.h>
--- 11,14 ----
***************
*** 391,398 ****
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
******************************************************************************/
-
- #ifdef __cplusplus
- }
- #endif
--- 387,390 ----
Index: lualib.h
===================================================================
RCS file: /cvsroot/timewarp/include/lualib.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** lualib.h 21 Nov 2003 20:32:01 -0000 1.2
--- lualib.h 6 Dec 2003 02:21:13 -0000 1.3
***************
*** 11,18 ****
#include "lua.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
-
#ifndef LUALIB_API
--- 11,14 ----
***************
*** 57,64 ****
#define lua_mathlibopen luaopen_math
#define lua_dblibopen luaopen_debug
-
- #ifdef __cplusplus
- }
- #endif
#endif
--- 53,56 ----
|
Update of /cvsroot/timewarp/source/util/lua/lib In directory sc8-pr-cvs1:/tmp/cvs-serv19203/source/util/lua/lib Removed Files: README lauxlib.c lbaselib.c ldblib.c liolib.c lmathlib.c loadlib.c lstrlib.c ltablib.c Log Message: removed lua source --- README DELETED --- --- lauxlib.c DELETED --- --- lbaselib.c DELETED --- --- ldblib.c DELETED --- --- liolib.c DELETED --- --- lmathlib.c DELETED --- --- loadlib.c DELETED --- --- lstrlib.c DELETED --- --- ltablib.c DELETED --- |