Mordeth Posted December 23, 1999 Jaakko Keränen updated the JHexen site with a progress report. He's currently debugging the new network code:The networking model will be some kind of a semi-client/server where the clients exchange ticcmds through the server. It would be much more difficult to do a full client/server model: the clients would send ticcmds to the server, which would simulate all world events and then send the changed data to the clients. The hard part is figuring out what to send to each client...Players won't be able to join a game when it's in progress for the same reason as demo recording needs to be started from the beginning of a level: the world must be kept in sync. I think things would get pretty complicated if all the changed world data would be sent to each joining player.Still, lots more work needs to be done on his Doomsday engine (the 'basic' part of the engine) and the JHexen-specific code. A nice screenshot has also been posted, showing off per-pixel rendered fog with a Voodoo1 card. 0 Share this post Link to post
Afterglow Posted December 23, 1999 Hey Gaston, a url would be nice. :P 0 Share this post Link to post
Guest Anonymous User Posted December 27, 1999 <SCRIPT LANGUAGE="JavaScript"> <!-- hide var speed = 30; var y = 1; var x = speed + y; var time = x - y; var now; campicture = new Image(); function stopClock() { x = "off"; document.form0.clock.value = x; } function startClock() { if (x != "off") { x = x - y; document.form0.clock.value = x; if (x <= 1) { reload() } timerID = setTimeout("startClock()", 1000); } } function reload() { now = new Date(); var camImg = "http://www.izzicam.com/guestcam/izzicam.jpg" + "?" + now.getTime(); document.campicture.src = camImg; x = speed; document.form0.clock.value = x; } //end hide --> </SCRIPT> <BODY BGCOLOR="#ffffff" LINK="#008080" ALINK="#ff0000" VLINK="#808080" onload="startClock()"> <FORM ACTION="guest_cam.htm" NAME="form0"> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" BGCOLOR="ffffff"> <TR><TD ALIGN="center"><IMG NAME="campicture" SRC="http://www.izzicam.com/guestcam/izzicam.jpg" ALT="Picture" BORDER="0" HEIGHT="240" WIDTH="320" RELOAD="120"></TD> </TR> </TABLE> 0 Share this post Link to post