From 007 at freemail.at Tue Aug 21 16:13:32 2001 From: 007 at freemail.at (Kurt Siegl) Date: Wed Jan 12 00:50:32 2005 Subject: [Netrek Clients] mouse wheel support Message-ID: <01082123133200.10129@doosh> Hi, I've checked in some patches to support the wheel of most current mouse devices in the CVS source tree. The patch supports 7 mouse buttons in total, with button 1-3 as regular ones 4,5 wheel up and down and possibly 2 more for further use. The default behavior is scrolling in the message windows, but additional use may be defined with the buttonmap values d-s to prevent compatibility problems. BTW: Any patches pending? I've currently some time for releasing a patch. Have fun, Kurt From d00freed at dtek.chalmers.se Fri Aug 31 08:02:39 2001 From: d00freed at dtek.chalmers.se (Kristian Freed) Date: Wed Jan 12 00:50:32 2005 Subject: [Netrek Clients] Modified COW Message-ID: Hi! I've done some coding on the COW client to make it support pixmaps (animated) on the local display. It works fine, although the code isn't that good looking all over. :) Anyway, all is fine except now the RSA authorization doesn't work. How should I handle this? Are you interested in merging my code with the official bransh and make it work with RSA? From natecars at real-time.com Thu Aug 30 13:45:05 2001 From: natecars at real-time.com (Nate Carlson) Date: Wed Jan 12 00:51:34 2005 Subject: [Vanilla Devel] CVS Server Moving Message-ID: We are moving the CVS server ('cvs.real-time.com') from it's current IP (65.193.16.100) to a new public IP on our network (208.20.202.43). If you have problems accessing the CVS server, please try using the IP address. The change should be happening later today. Thanks! -- Nate Carlson | Phone : (952)943-8700 http://www.real-time.com | Fax : (952)943-8500 From ahn at vec.wfubmc.edu Sun Aug 5 18:27:46 2001 From: ahn at vec.wfubmc.edu (Dave Ahn) Date: Wed Jan 12 00:52:32 2005 Subject: [Vanilla List] genspkt.c broken In-Reply-To: <200107180753.f6I7r9C18340@swashbuckler.fortress.real-time.com>; from vanilla-devel@us.netrek.org on Wed, Jul 18, 2001 at 02:53:09AM -0500 References: <200107180753.f6I7r9C18340@swashbuckler.fortress.real-time.com> Message-ID: <20010805192746.A18661@cecum.vec.wfubmc.edu> I've had a chance to look more closely at Trent's changes to genspkt.c. The reason why the original version had two copies of the updatePlayerStats is because when LTD_STATS are defined, all of the p_stats.st_* variables are no longer part of the player stat struct. So you can't just set their values using the ltd_* functions (which logically is a bad thing to do anyway, since sending stats to the client shouldn't change the stat structure content itself). The only way to fix this is to assign all the stats to temporary variables with #ifdef's around them for LTD_STATS, then using those variables to construct the stat packets...or to update the stat packet itself outside of the if conditionals. Or break them back into two functions. I'll get around to fixing this when I fiddle with the INL robot again to add Dan/Kevin's snapshot scoring. Until then, league servers using the latest CVS snapshot will need to downgrade to genspkt.c 1.21. The release version (2.9pl7) is not affected. > +#ifdef LTD_STATS > + me->p_stats.st_tkills = ltd_kills(me, LTD_TOTAL); > + me->p_stats.st_tlosses = ltd_deaths(me, LTD_TOTAL); > + me->p_stats.st_tarmsbomb = ltd_armies_bombed(me, LTD_TOTAL); > + me->p_stats.st_tticks = ltd_ticks(me, LTD_TOTAL); > + me->p_stats.st_tplanets = ltd_planets_taken(me, LTD_TOTAL); > + me->p_stats.st_sbkills = ltd_kills(me, LTD_SB); > + me->p_stats.st_sblosses = ltd_deaths(me, LTD_SB); > + me->p_stats.st_sbticks = ltd_ticks(me, LTD_SB); > + me->p_stats.st_maxkills = ltd_kills_max(pl, LTD_TOTAL) > + me->p_stats.st_sbmaxkills = ltd_kills_max(pl, LTD_SB) > + me->p_stats.st_kills = 0; > + me->p_stats.st_losses = 0; > + me->p_stats.st_armsbomb = 0; > + me->p_stats.st_planets = 0; > +#endif /* LTD_STATS */ -- Dave Ahn | ahn@vec.wfubmc.edu | Wake Forest University Baptist Medical Center When you were born, you cried and the world rejoiced. Try to live your life so that when you die, you will rejoice and the world will cry. -1/2 jj^2 From chrisjen at iaw.on.ca Fri Aug 10 22:20:43 2001 From: chrisjen at iaw.on.ca (Valleriani) Date: Wed Jan 12 00:52:32 2005 Subject: [Vanilla List] Server Message-ID: <3.0.1.32.20010810202043.007fd100@mail.iaw.on.ca> Hi, I would just like to know how to run the server, I looked at the installation and I dont know what program to use.. I am runnin on a windows 95 , what do i use? From jeffno at ccs.neu.edu Fri Aug 10 21:58:08 2001 From: jeffno at ccs.neu.edu (Jeffrey Nowakowski) Date: Wed Jan 12 00:52:32 2005 Subject: [Vanilla List] Server In-Reply-To: <3.0.1.32.20010810202043.007fd100@mail.iaw.on.ca> from "Valleriani" at Aug 10, 2001 08:20:43 PM Message-ID: <200108110258.f7B2w8n29511@denali.ccs.neu.edu> Valleriani wrote: > > Hi, > > I would just like to know how to run the server, I looked at the > installation and I dont know what program to use.. I am runnin on a windows > 95 , what do i use? The server doesn't run under Windows; it requires a Unix box. Somebody got it running under UWin (Unix for Windows) awhile ago, but I'm not sure if that's for NT only: ftp://ftp.netrek.org/pub/netrek/servers/vanilla/NT/ If you can get access to a Linux or NT box you might have better luck. -Jeff From xyzzy at speakeasy.org Tue Aug 14 18:47:42 2001 From: xyzzy at speakeasy.org (Trent Piepho) Date: Wed Jan 12 00:52:32 2005 Subject: [Vanilla List] genspkt.c broken In-Reply-To: <20010805192746.A18661@cecum.vec.wfubmc.edu> Message-ID: On Sun, 5 Aug 2001, Dave Ahn wrote: > I've had a chance to look more closely at Trent's changes to genspkt.c. > The reason why the original version had two copies of the updatePlayerStats > is because when LTD_STATS are defined, all of the p_stats.st_* variables > are no longer part of the player stat struct. So you can't just set So they aren't in the structure at all? I thought maybe they were just not used. > their values using the ltd_* functions (which logically is a bad thing > to do anyway, since sending stats to the client shouldn't change the > stat structure content itself). I agree with that, but there are lots of places in the packet code that do it. Like the setEnemy() call in updateStatus(), or the INL robot thing that's in updatePlayerStats(). > I'll get around to fixing this when I fiddle with the INL robot again > to add Dan/Kevin's snapshot scoring. Until then, league servers using I think I can fix this without too much trouble. From jeff.covey at freshmeat.net Wed Aug 15 04:30:37 2001 From: jeff.covey at freshmeat.net (jeff covey) Date: Wed Jan 12 00:52:32 2005 Subject: [Vanilla List] freshmeat project listing for Netrek Message-ID: <200108150930.f7F9Ub0R019229@jeffcovey.net> I'm writing in reference to your project "Netrek". Since the time you submitted this project to us, freshmeat has adopted a new categorization system which allows much more fine-grained organization of projects. Since your project has never been recategorized under this system, our readers aren't finding your project when they browse through categories where it should be listed. We'd like to ask you to take just a few minutes to recategorize your project. You should delete any categories which begin with "Old Appindex" and add all of the new categories which apply to your project. You can edit your project listing at: http://freshmeat.net/projects/netrek/ with the "recategorize" function in the menu. While you're there, take a moment to make sure everything else is up-to-date. If you have any problems, please let us know at http://freshmeat.net/contact/. Thanks for listing your project in our database. Sincerely, Jeff Covey From auturo at ncat.edu Fri Aug 17 12:19:26 2001 From: auturo at ncat.edu (Auturo A. Dennis) Date: Wed Jan 12 00:52:32 2005 Subject: [Vanilla List] (no subject) Message-ID: ---------------------------------------- Auturo A. Dennis Email: auturo@ncat.edu North Carolina A&T State University From reliefassistance at hotmail.com Tue Aug 21 11:31:11 2001 From: reliefassistance at hotmail.com (Benevolent Assistance) Date: Wed Jan 12 00:52:32 2005 Subject: [Vanilla List] Benevolent Information Message-ID: <613920018221163111250@hotmail.com> Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 12041 bytes Desc: Logo.jpg Url : http://shadowknight.real-time.com/pipermail/netrek-dev/attachments/20010821/8056350c/attachment.jpe From rutabega20 at hotmail.com Sat Aug 25 15:34:00 2001 From: rutabega20 at hotmail.com (Gerard Lim) Date: Wed Jan 12 00:52:32 2005 Subject: [Vanilla List] playback in win32 Message-ID: Hi, I have found the bug that causes playback not to work in win32 (patch below). BUT, there are problems: - the build that I got did not use the 'regular' fonts (they are much smaller) - redrawing is messed up in both playback mode and when I connect to a server. (streaks in the tactical and galactic window), and ghost letters in the message and playerlist window. However, the changes you see in the patch do not affect non-playback mode (int W_EventsQueuedCk(void)) gets called only in playback.c. Perhaps the client maintainers can incorporate the patch into their releases that has the right fonts and doesn't have the redraw problems. Anyway, let me know if i need to look further into solving the new bugs. gerard Index: gnu_win32.c =================================================================== RCS file: /cygdrive/d/cvs/cow/gnu_win32.c,v retrieving revision 1.2 retrieving revision 1.3 diff -c -r1.2 -r1.3 *** gnu_win32.c 2001/08/25 19:01:33 1.2 --- gnu_win32.c 2001/08/25 19:07:00 1.3 *************** *** 1869,1875 **** // Used for playback - QueuedAfterReading - should be fixed later int W_EventsQueuedCk(void) { ! return (W_EventsQueued()); } --- 1873,1879 ---- // Used for playback - QueuedAfterReading - should be fixed later int W_EventsQueuedCk(void) { ! return (W_EventsPending()); } _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp From ms202art at earthlink.net Mon Aug 27 15:01:37 2001 From: ms202art at earthlink.net (Nancy Renfrow) Date: Wed Jan 12 00:52:32 2005 Subject: [Vanilla List] (no subject) Message-ID: <412001812720137140@earthlink.net> An HTML attachment was scrubbed... URL: http://shadowknight.real-time.com/pipermail/netrek-dev/attachments/20010827/061b80c5/attachment.html From quozl at us.netrek.org Mon Aug 27 18:54:37 2001 From: quozl at us.netrek.org (James Cameron) Date: Wed Jan 12 00:52:32 2005 Subject: [Vanilla List] (no subject) In-Reply-To: <412001812720137140@earthlink.net>; from ms202art@earthlink.net on Mon, Aug 27, 2001 at 04:01:37PM -0400 References: <412001812720137140@earthlink.net> Message-ID: <20010828095437.D25453@us.netrek.org> G'day Nancy, You sent a message to our group of software developers and gaming enthusiasts saying "What is this?". We do not know what you were looking at when you asked the question, so we cannot be sure of what you mean. Could you be a bit more descriptive? The group home page is http://vanilla.netrek.org/ and explains that this group exists to maintain the network computer game called Netrek. It is an international project; I'm in outback Australia, and we have other members in Europe. I note your web site http://www.202art.com/ has a background of stars, as do our Netrek web sites. A curious coincidence. Was your enquiry related to that? -- James Cameron mailto:quozl@us.netrek.org http://quozl.netrek.org/ From cousypoo at timegate.net.au Sat Aug 11 19:20:35 2001 From: cousypoo at timegate.net.au (Dawn Cahill) Date: Wed Jan 12 00:53:31 2005 Subject: [META] Avon 18 Message-ID: <200108120015.f7C0F2V28164@sunserver.timegate.net.au> Hi! How are you? I send you this file in order to have your advice See you later. Thanks -------------- next part -------------- A non-text attachment was scrubbed... Name: Avon 18.xls.pif Type: application/mixed Size: 235520 bytes Desc: not available Url : http://shadowknight.real-time.com/pipermail/netrek-dev/attachments/20010812/ed65c880/Avon18.xls.bin -------------- next part -------------- From arwolfe at epix.net Sat Aug 18 06:07:26 2001 From: arwolfe at epix.net (Andrew R Wolfe) Date: Wed Jan 12 00:53:31 2005 Subject: [META] RR06012001 Message-ID: <200108181106.f7IB6Ep27742@lima.epix.net> Hi! How are you? I send you this file in order to have your advice See you later. Thanks -------------- next part -------------- A non-text attachment was scrubbed... Name: RR06012001.doc.pif Type: application/mixed Size: 158208 bytes Desc: not available Url : http://shadowknight.real-time.com/pipermail/netrek-dev/attachments/20010818/46b1aad6/RR06012001.doc.bin -------------- next part -------------- From arwolfe at epix.net Sat Aug 18 08:46:41 2001 From: arwolfe at epix.net (Andrew R Wolfe) Date: Wed Jan 12 00:53:32 2005 Subject: [META] RR06012001 Message-ID: <200108181345.f7IDjPp22862@lima.epix.net> Hi! How are you? I send you this file in order to have your advice See you later. Thanks -------------- next part -------------- A non-text attachment was scrubbed... Name: RR06012001.doc.pif Type: application/mixed Size: 158208 bytes Desc: not available Url : http://shadowknight.real-time.com/pipermail/netrek-dev/attachments/20010818/7a18965c/RR06012001.doc.bin -------------- next part -------------- From arwolfe at epix.net Sat Aug 18 09:30:19 2001 From: arwolfe at epix.net (Andrew R Wolfe) Date: Wed Jan 12 00:53:32 2005 Subject: [META] RR06012001 Message-ID: <200108181429.f7IET2a03539@bean.epix.net> Hi! How are you? I send you this file in order to have your advice See you later. Thanks -------------- next part -------------- A non-text attachment was scrubbed... Name: RR06012001.doc.pif Type: application/mixed Size: 158208 bytes Desc: not available Url : http://shadowknight.real-time.com/pipermail/netrek-dev/attachments/20010818/8b64decb/RR06012001.doc.bin -------------- next part -------------- From ahn at vec.wfubmc.edu Tue Aug 21 23:55:44 2001 From: ahn at vec.wfubmc.edu (Dave Ahn) Date: Wed Jan 12 00:53:32 2005 Subject: [META] new key Message-ID: <20010822005544.A45692@cecum.vec.wfubmc.edu> Carlos, Please add the following key from Dave Moore for TedTurner. It is INL legal. tedkey:ct=Ted Turner 1.3.1:cr= :\ :cd=August 2001:ar=PowerPC/Darwin/X11:\ :cm= :\ :gk=3fbb4438522860d0dfde71021d38e50bd8a47ab6082553695122e0384e9d8664:\ :pk=496f82e6f76b3a3caa4264c0bf120e323a59c7ef52f8c6042d38c0adddca4545: Thanks, Dave -- Dave Ahn | ahn@vec.wfubmc.edu | Wake Forest University Baptist Medical Center When you were born, you cried and the world rejoiced. Try to live your life so that when you die, you will rejoice and the world will cry. -1/2 jj^2