Difference between revisions of "DevBlog"

From SfzWiki
Jump to: navigation, search
(2007 June)
(removed spam)
 
(93 intermediate revisions by 30 users not shown)
Line 1: Line 1:
 +
'''we moved the devblogs of our projects into one common blog: http://schattenkind.net/blog/'''
 +
 
for download, see [[Main Page]]
 
for download, see [[Main Page]]
  
=== 2007 September ===
 
  
[[User:Hagish|hagish]] 14:45, 25 September 2007 (CEST) : the new ode binding (nearly a 1:1 binding the the ode.h) starts to work. You can test it with the flag -ot. Rightclick to move the camera,
+
== 2008 March ==
leftclick to add a force to a box and space to reset the scene.
+
<startFeed /> <!-- place startFeed tag at the start of every month, and endFeed at the end -->
  
<gallery>
+
=== new blog software and url ===
Image:20070925143956 718.png
+
Image:20070925144000 462.png
+
Image:20070925144001 903.png
+
Image:20070925144008 298.png
+
</gallery>
+
  
[[User:Ghoulsblade|Ghoulsblade]] 21:07, 23 September 2007 (CEST) : hah ! i found out how to detect them, now it works the way it should =)
+
[[User:Hagish|Hagish]] 15:35, 8 October 2008 (CEST) because of some issues with the wiki bloging we moved to a "normal" software. you can find the new post under http://schattenkind.net/blog/ .
  
<gallery>
+
=== working on the new gui system ===
Image:20070923210335_081.png
+
Image:20070923210337_583.png
+
Image:20070923210342_480.png
+
Image:20070923210344_333.png
+
</gallery>
+
  
[[User:Ghoulsblade|Ghoulsblade]] 19:50, 23 September 2007 (CEST) : geom edit triangle generation starting to work, but we still have to remove inner triangles, i currently have no idea how to detect them :(
+
[[User:Ghoulsblade|Ghoulsblade]] 23:33, 12 March 2008 (CET) : we're still testing in the iris codebase mainly, but the new gui system will be used for sfz as well, a little preview about some upcoming features for text display :<br>
<gallery>
+
http://www.iris2.de/images/5/50/20080312230402_299.png
Image:20070923194556_953.png
+
Image:20070923194608_889.png
+
</gallery>
+
  
[[User:Ghoulsblade|Ghoulsblade]] 15:52, 23 September 2007 (CEST) : we're currently experimenting with a simple geometry editor where you can turn on and off the edges of a cube to describe the geometry of a ship-part, this allows to create ramps, pyramids and similar shapes with a relatively easy interface.
+
<endFeed /> <!-- place startFeed tag at the start of every month, and endFeed at the end -->
  
<gallery>
+
== 2008 February ==
Image:20070923154648_082.png
+
<startFeed /> <!-- place startFeed tag at the start of every month, and endFeed at the end -->
Image:20070923154652_392.png
+
Image:20070923154655_798.png
+
Image:20070923154659_352.png
+
</gallery>
+
  
[[User:Ghoulsblade|Ghoulsblade]] 02:04, 22 September 2007 (CEST) : more heightfield tweaking, now with a nice cc-by texture from the blender repos (see readme)
+
=== bit quiet lately ===
<gallery>
+
Image:20070921232359_575.png
+
Image:20070922014801_953.png
+
Image:20070922014859_553.png
+
</gallery>
+
  
[[User:Ghoulsblade|Ghoulsblade]] 23:01, 21 September 2007 (CEST) : first experimental heightfield on planet :  
+
[[User:Ghoulsblade|Ghoulsblade]] 00:40, 15 February 2008 (CET): we're still around, but rather busy lately with other stuff, some interesting things that will probably be used for sfz planets later are being experimented with in iris (see  [http://iris2.de/index.php/Dev_Blog iris devblog] ), namely shadows, sky, and also a few grass and tree experiments. Also code for TextureAtlas and geometry-batching for better performance has been added there.
<gallery>
+
Image:20070921225942_960.png
+
</gallery>
+
  
 +
and we're also brainstorming for a redesing of the guicode, a few notes [http://lugre.schattenkind.net/index.php/GUINotes here].
  
[[User:Ghoulsblade|Ghoulsblade]] 04:33, 19 September 2007 (CEST) : first very simple planet landing
+
<endFeed /> <!-- place startFeed tag at the start of every month, and endFeed at the end -->
<gallery>
+
Image:20070919043143_160.png
+
</gallery>
+
  
[[User:Ghoulsblade|Ghoulsblade]] 01:27, 18 September 2007 (CEST) : threads are working now, and the keepalive message for online games that is sent via http to our masterserver (a php script which just keeps track of running games) is now sent using the threaded http netmessage util, so the game doesn't hang anymore while the connection is established =)
+
== 2008 January ==
 +
<startFeed /> <!-- place startFeed tag at the start of every month, and endFeed at the end -->
  
[[User:Ghoulsblade|Ghoulsblade]] 03:08, 17 September 2007 (CEST) : starded playing with boost threads, made 2 threaded utils :
+
=== fastbatch ===
* sending a simple network request and waiting for the answer
+
** e.g. for loading a php page via http, like for our online-game keep-alive message.
+
* loading a big file to memory
+
Both are i/o operations, so making them threaded prevents the game from hanging.
+
I haven't finished the lua bindings for them and haven't tested them yet, but making them threaded was very easy with boost.
+
I made it so that our code can be compiled without boost and without thread support, in that case they still work, but are blocking operations.
+
  
[[User:Hagish|hagish]] 03:11, 16 September 2007 (CEST) : worked on the mission system and improved the ui (mission display, waypoint) a bit. first little kill mission added. you can create the test mission using the F9 key.
 
<gallery>
 
Image:20070916030613 904.png
 
Image:20070916030646 242.png
 
</gallery>
 
  
[[User:Ghoulsblade|Ghoulsblade]] 12:09, 15 September 2007 (CEST) : we worked a bit on sfz last night, we had to kick the boost::timer as it was very unreliable, (varying second length, depending on wether i move the window partly outside the screeen...) and hagish convinced me to finally look up the SDL code and extract the essential bits for timing and it was easier and shorter (win:1 line, linux:3 lines) than i though, and now we have a good timer that needs no extra lib.
+
[[User:Ghoulsblade|Ghoulsblade]] 21:09, 4 January 2008 (CET) : we've been working on a class for grouping the geometry of up large numbers of objects into a single batch, similar to the Ogre::StaticGeometry, this allows better performance at a slightly increased vram cost.
hagish started redesigning and extending the mission system, things might currently be a bit broken though.
+
It is a bit more lightweigt and flexible than static geometry, and has been designed to construct the batch fast so it can be used for contructing the batch at runtime, whereas Ogre::StaticGeometry was rather designed to construct the batch while loading a level or similar, so it wasn't really designed for fast construction.
I improved the file-browser-dialog code a bit, and now you can navigate directories.
+
Also our batch allows colouring instances via vertex colour, and allows the whole batch to be repositioned and rotated as a whole. The main reason for developing it was to improve performance in iris, but it will probably be useful for things like asteroid fields in sfz as well, and maybe for stuff on planets later as well.
It's still rather ugly as it is not easy to make scrolling support in our current gui, but it's better than before.
+
Also i cleaned some rather old code in lib.timer.lua, that is now easier with the listener system.
+
 
+
[[User:Hagish|hagish]] 16:25, 9 September 2007 (CEST) : Last night i implemented basic rocket support and started enemy groups handling code for kill missions.
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 00:07, 6 September 2007 (CEST) : i tried adding the stuff from the ogre cellshading demo to sfz, it worked, but looks bad, and does not support textures, only plain color materials. so this won't do, we'll need something completely different if we decide to use a slight celshading effect.
+
  
 
<gallery>
 
<gallery>
Image:20070906000406_762.png
+
Image:20080104213835 948.jpg
 +
Image:20080104213836 299.jpg
 +
Image:20080104213830 410.jpg
 +
Image:20080104213855 798.jpg
 +
Image:20080104213900 317.jpg
 +
Image:20080104213905 754.jpg
 
</gallery>
 
</gallery>
  
[[User:Ghoulsblade|Ghoulsblade]] 03:18, 4 September 2007 (CEST): just added some new models from kaelis and classic_traveller_diehard :
+
<endFeed /> <!-- place startFeed tag at the start of every month, and endFeed at the end -->
<gallery>
+
Image:20070904025927_140_sandcast.png
+
Image:20070904030417_685_crystalasteroid.png
+
Image:20070904031126_172_cry2.png
+
Image:20070904030644_859_fusion.png
+
Image:20070904025831_148_cell.png
+
</gallery>
+
  
[[User:Ghoulsblade|Ghoulsblade]] 02:30, 4 September 2007 (CEST) : we've now got an ingame bug reporting system : when an error occurs for the first time, you are asked if you want to send in a bug report, you can do so with one click on the SEND button, no copy-pasting needed, and you can see the info that will be sent.
+
== 2007 December ==
 +
<startFeed /> <!-- place startFeed tag at the start of every month, and endFeed at the end -->
  
hagish made an irc lib and i just built it in, now when you start sfz you can chat in our irc channel.
+
=== merry xmas to all ! quiet here lately due to work on iris ===
the username used for irc is auto-detected from your system user, should work on win and linux, and a 3 digit random number is appended just to be sure.
+
  
i also made a new win binary updated the downloads on the mainpage =)
+
[[User:Ghoulsblade|Ghoulsblade]] 16:17, 24 December 2007 (CET) : merry xmas to all who read this =)
 +
it's been a bit quiet here lately, we're currently busy working on performance improvements for [http://www.iris2.de/index.php/Dev_Blog iris], but at least some of them might also be interesting for sfz later =)
 +
We're experimenting with multitexturing, tilebased terrain, transition masks, and a more dynamic batched geometry class than the Ogre::StaticGeometry, as we need to change the contents at runtime, and want to avoid costly reading mesh data back from VRAM.
 +
And since iris and sfz share the lugre lib, both projects benefit from the resulting code improvements and addtitions.
  
[[User:Ghoulsblade|Ghoulsblade]] 01:03, 3 September 2007 (CEST) : we now have a master/gamelist-server. when you click "host game" the game is announced on that server, and other players can connect to it, if your firewall/router allows incoming tcp connections on port 6666.
+
<endFeed /> <!-- place startFeed tag at the start of every month, and endFeed at the end -->
The currently open games are listed on the start menu screen.
+
you can customize the game name by adding a line like this to data/config.lua :
+
  gGameName = "YOURNAME's game"
+
  
[[User:Hagish|hagish]] 21:09, 2 September 2007 (CEST) : I experimented a bit with ode. Ode itself works quite well and the basics are very easy. I tried to implement a good ode-based ship movement but i experienced problems with the correct roll/pitch of the ships. They did nothing or circled around like crazy. I'll look inti this another time.
+
== 2007 November ==
Lugre got a basic IRC implementation (very basic, you can login, join and chat :) ) for our lobby.
+
<startFeed /> <!-- place startFeed tag at the start of every month, and endFeed at the end -->
  
[[User:Merlin|Merlin]] 03:56, 2 September 2007 (CEST) : If your energy consumption is higher then your production and your energy equals zero one of the energy consuming entities is unequiped
 
  
[[User:Merlin|Merlin]] 21:49, 1 September 2007 (CEST) : I just started helping with sfz and implemented my first feature. If you press "left alt" the names of all objects will be shown and there are some modificators (press and hold "left alt" and in addition)
+
=== tractorbeam experiment ===
* "a" shows only asteroids
+
* "s" shows only ships
+
* "b" shows only planets and space stations (b stands for base)
+
* "e" shows only enemies
+
  
<gallery>
+
[[User:Ghoulsblade|Ghoulsblade]] 21:03, 26 November 2007 (CET) : first experimental tractor-beam weapon.
Image:20070901161715_057.png
+
Can be used to drag enemies inside the range of deadly close-range weapons.... or for having fun with asteroids :)
Image:20070901191553_131.png
+
Image:20070901211154_570.png
+
</gallery>
+
  
=== 2007 august ===
+
<flvplayer width="320" height="240"  loop="false">TractorBeam01.ogg</flvplayer>
  
[[User:Ghoulsblade|Ghoulsblade]] 02:45, 31 August 2007 (CEST) : not much new code in the past few days, just a few small fixes (just now : hud-target-line should work on all systems) i've been busy finishing something for iris. but a few nice models and  interesting discussions in irc and in the forum have happened in the meantime.
 
  
[[User:Ghoulsblade|Ghoulsblade]] 15:21, 25 August 2007 (CEST) : another coding night with hagish and many news to report :
 
* new ship-model for pirates
 
* shipeditor : ctrl-click for mass placement (hard to explain, just try and see)
 
* shipeditor : quicksave button
 
* shipeditor : improved lightning
 
* shipeditor : shift-click : line tool
 
* equipment system starts to work, various equipment parts added
 
** shield-battery : shieldmax+100
 
** big shield-battery : shieldmax+200
 
** shield-charger : shieldrechargerate+50, energyrechargerate-5
 
** fusion-reactor : energyrechargerate+50
 
** nickel-cadmium-accumulator : energymax+100
 
** titanium-armor : hullmax+200 (has to be repaired first)
 
* ship-engine-exhaust particle/trail can now be placed, and there can be more than one per ship
 
* ship orientation during flight improved
 
* pirates now get angry and attack you when you come too close
 
* pirates now call their friends when you shoot them
 
* pirates : dead pirates spawn new little ones
 
* interior : you can save/load the interior layout you created by f5/f6
 
* a new, huge shiptype is available
 
  
<gallery>
+
=== short video of interior walk ===
Image:20070825031927_784.png
+
Image:20070825033142_677.png
+
Image:20070825033156_530.png
+
Image:20070825050203_148.png
+
Image:20070825061606_805.png
+
Image:20070825062237_410.png
+
</gallery>
+
  
[[User:Ghoulsblade|Ghoulsblade]] 22:35, 24 August 2007 (CEST) : mesh editor starts working.
+
[[User:Ghoulsblade|Ghoulsblade]] 16:22, 22 November 2007 (CET) : no new feature, but i made a short video showing how interior walking and furniture placement currently looks
<gallery>
+
Image:20070824211614_814.png
+
Image:20070824211908_552.png
+
</gallery>
+
  
 +
<flvplayer width="320" height="240"  loop="false">Interior.ogg</flvplayer><br>
 +
[http://sfz.schattenkind.net/wiki/images/7/72/Interior.ogg Interior.ogg(1.5mb)]
  
[[User:Ghoulsblade|Ghoulsblade]] 00:33, 24 August 2007 (CEST) : i started working on a simple ingame mesh editor, this will be useful for importing new models, so the rescaling,rotating and repositioning of them can be done with a grid in game coordinates and other ingame models like the space-man for size comparison blended in.
+
=== weapon icons : cooldown bar ===
<gallery>
+
Image:20070824002927_470.png
+
Image:20070824003943_568.png
+
</gallery>
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 16:53, 23 August 2007 (CEST) : now i also added the models from classic_traveller_diehard ingame. scaling and position still has to be adjusted, but i plan to make a seperate tool for that.
+
  
 +
[[User:Ghoulsblade|Ghoulsblade]] 22:17, 20 November 2007 (CET) : the weapon icons now have a bar displaying the cooldown time until the weapon can be fired again.
 
<gallery>
 
<gallery>
Image:20070823164846_323.png
+
Image:20071120221401_148.png
Image:20070823164912_837.png
+
Image:20070823164955_172.png
+
Image:20070823182647_735.png
+
 
</gallery>
 
</gallery>
  
[[User:Ghoulsblade|Ghoulsblade]] 16:33, 23 August 2007 (CEST) : i extended the blender-ogre-exporter script to be more comfortable, see
+
=== clickable weapon icons ===
http://ghoulsblade.schattenkind.net/ogre/
+
and i adjusted our blender export howto : [[HowToExportFromBlender]] , it's now much more comfortable to get a .mesh file. Kaelis already tried the guide successfully, and improved his biotube model to work better ingame :
+
  
 +
[[User:Ghoulsblade|Ghoulsblade]] 17:16, 19 November 2007 (CET) : now we've got clickable weapon icons, left-click to fire the weapon, rightclick to open a context menu (currently only for unequipping)
 
<gallery>
 
<gallery>
Image:Biotube-ingame.png
+
Image:20071119170851_778.png
 
</gallery>
 
</gallery>
  
[[User:Hagish|hagish]] 01:23, 23 August 2007 (CEST) : First ode binding working. In the lab you can see 2 bouncy fridges :)  (start sfz with commandline parameter -lab)
+
=== better movement and more weapons ===
 
+
[[User:Hagish|hagish]] 13:00, 18 November 2007 (CET) : Last night and the last 2 hours we improved the ship movement. Now we have a non-newton-max-velocity navigation. This not very realistic but far more fun. There are some new weapons too: splitting rockets (nut,star), chain laser, lightning gun
 
+
[[User:Ghoulsblade|Ghoulsblade]] 00:26, 23 August 2007 (CEST): a few more screenshots with better engine trails, and my first try to import blender models (hagish imported the other models so far). I found exporting/importing is currently very troublesome because i had to rename many things and change filepaths, so i'm thinking about looking into the exporter sourcecode and trying to add an option to automate this in order to make exporting easier.
+
Also the models still have to be rescaled, repositioned and rotated before the can be used correctly ingame, and i think i'll try to make an ingame editor for that, so they can be compared directly to existing ingame models like the spacesuit for a better size-impression, and i can blend in a grid in ingame coordinates this way.
+
It'll be quite a bit of work, but i think it will be well worth it in the long run.
+
 
+
 
<gallery>
 
<gallery>
Image:20070820233448_588.png
+
Image:20071118124524 100.png
Image:20070820233924_910.png
+
Image:20071118124526 071.png
Image:20070820233939_859.png
+
Image:20071118124530 554.png
Image:20070823001616_391.png
+
Image:20071118124541 628.png
Image:20070823001745_358.png
+
Image:20071118124602 996.png
 +
Image:20071118124701 774.png
 +
Image:20071118124703 713.png
 +
Image:20071118124705 524.png
 +
Image:20071118124731 281.png
 +
Image:20071118124733 949.png
 +
Image:20071118124759 514.png
 +
Image:20071118124801 804.png
 +
Image:20071118124803 595.png
 
</gallery>
 
</gallery>
  
 +
=== split rocket ===
 +
[[User:Hagish|hagish]] 16:45, 17 November 2007 (CET) : the first new weapon starts to work. a split rocket and a chain laser.
 +
http://sfz.schattenkind.net/wiki/images/f/f0/Splitrocket.ogg
 +
=== weapon icons 2 ===
  
[[User:Ghoulsblade|Ghoulsblade]] 02:49, 20 August 2007 (CEST) : hud stuff : edgemarkers and name display for objects
+
[[User:Ghoulsblade|Ghoulsblade]] 17:14, 11 November 2007 (CET) : BR48 showed up in the freegamer irc and asked if he could help out anywhere,
 +
now he started making nicer icons for us =)
  
<gallery>
+
[[Image:Icon-rocket.png]]
Image:20070820024725_482.png
+
forum thread : http://forum.freegamedev.net/index.php?t=msg&th=443
</gallery>
+
  
[[User:Ghoulsblade|Ghoulsblade]] 23:12, 19 August 2007 (CEST) hagish and i met this weekend and coded like crazy =)
+
=== weapons and enemygroups ===
* we've replaced the billboard-planets by 3d-ones with textures from the freeorion orion project that were available under cc-by-sa (see README for credits)
+
* hagish added a spaceport menu listing planets and stations
+
* mousepicking is now more accurate and when there are multiple objects under the mouse you can cycle between them by clicking repeatedly
+
* we tested multiplayer networking and solved a few bugs and issues, it works fine in a LAN
+
* we accidentally "discovered" a feature, when you exit a ship while it's autopilot is activated, the autopilot does not switch off, and it continues to not only approach, but to actually FOLLOW the target if it is a moving ship. by repeatedly undocking fighters from the mothership, setting them to follow leaving via spacesuit and re-entering the mothership, we built a little fleet of fighters following us and made a few screenshots
+
* hagish improved a few things in the gui system
+
* you can now "call"/mark targets by pressing strg-t for the rest of the team, they have a red hud-border and can be selected by pressing t
+
* a line marker now helps finding the direction to selected targets that are offscreen
+
* we experimented with engine trails
+
* we built in the gui graphics that ray made for sfz
+
* a few changes in how cargo is handled internally in preparation for a generic container/equipment system
+
* we now have a little cursor
+
* we made a lot of screenshots
+
  
 +
[[User:Hagish|hagish]] 19:40, 4 November 2007 (CET) : last night ghouly and i worked a little bit on sfz. he startet to implement the new weapons and i merged the contributed enemygroup patch and started to implement a hero-defense like game mode.
  
<gallery>
+
=== weapon icons ===
Image:20070819235516 571.png
+
Image:20070819055354 642.png
+
Image:20070819054625 789.png
+
Image:20070819034443 386.png
+
Image:20070819034436 349.png|earth is under attack
+
Image:20070818230241_308.png|first planet experiment, not quite round enough, but kinda funny
+
Image:20070818232526_136.png
+
Image:20070818232619_643.png
+
Image:20070818232628_334.png
+
Image:20070818232639_109.png
+
Image:20070818234313_320.png
+
Image:20070818234425_395.png
+
Image:20070818234439_761.png
+
Image:20070818234743_803.png
+
Image:20070818235531_119.png
+
Image:20070819030922_992.png
+
Image:20070819031445_758.png
+
Image:20070819031522_688.png
+
Image:20070819031527_004.png
+
Image:20070819034031_979.png
+
Image:20070819034107_691.png
+
Image:20070819034114_244.png
+
Image:20070819034121_211.png
+
Image:20070819034136_830.png
+
Image:20070819034145_421.png
+
Image:20070819034159_315.png
+
Image:20070819034226_887.png
+
Image:20070819034243_169.png
+
Image:20070819034248_997.png
+
Image:20070819034535_996.png
+
Image:20070819034543_338.png
+
Image:20070819034555_496.png
+
Image:20070819034600_996.png
+
Image:20070819034612_247.png
+
Image:20070819224151_548.png|new gui skin
+
</gallery>
+
  
  
 +
[[User:Ghoulsblade|Ghoulsblade]] 03:44, 1 November 2007 (CET) hagish and i met today, and we decided to focus on combat.
 +
some notes : [[Sfz31.10.2007]]
 +
i already started making a few weapon-icons, they're rather simple, but should do for getting started.
  
[[User:Ghoulsblade|Ghoulsblade]] 18:27, 15 August 2007 (CEST) : simple delivery missions are now working, e.g. you can earn some extra iron by bringing supplies from earth to mars. still far from actual gameplay fun, but it's a good start.
+
  
[[User:Hagish|hagish]] 22:42, 14 August 2007 (CEST) : ok, openal should work ok with wav and ogg files in the current svn version. but it sounds a but sloppy (if i use openal with alsa). I also added a random name generator based on this article: http://www.gamedev.net/reference/articles/article2016.asp
 
  
[[User:Hagish|hagish]] 21:54, 7 August 2007 (CEST) : added some icons and keybindings to the shipeditor to make using it more comfortable.
+
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_rocket.png
 +
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_rocket_strong.png
 +
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_rocket_split1.png
 +
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_rocket_split3.png
 +
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_rocket_split_star.png
 +
(unguided missiles, last 3 can split into multipe warheads, in different formations)
 +
<br>
  
[[User:Ghoulsblade|Ghoulsblade]] 00:33, 6 August 2007 (CEST) we're back from dusmania, had a lot of fun, some interesting talks, and saw lots of spacegames this year, but mostly 2d. we also worked a bit on sfz and talked with a few people about it and got lots of positive feedback, which is very motivating =D
+
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_missile.png
hagish started experimenting with random generated structures that can be used for plants and lightning effects, and i just finished a geometry generation utility called loft (the green thing, not yet used with hagish data), that can be used later to generate geometry for plants with the data generated by hagishs lib.
+
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_missile_strong.png
 +
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_missile_remote.png
 +
(guided/homing missiles, the last one is remote controlled)
 +
<br>
  
<gallery>
+
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_laser.png
Image:20070806002543_362.png
+
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_projectile.png
Image:20070806003207_040.png
+
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_railgun.png
Image:20070806003217_802.png
+
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_charging.png
Image:20070806003223_734.png
+
laser,projectile,railgun,charging
</gallery>
+
<br>
  
 +
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_edrain.png
 +
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_tractor.png
 +
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_emp.png
 +
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_plasma_glob.png
 +
e-drain,tractor,emp(paralyzing shockwave),plasmaglob
 +
<br>
  
[[User:Ghoulsblade|Ghoulsblade]] 00:39, 4 August 2007 (CEST) : bought weapons can now be equipped from cargo dialog<br>
+
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_afterburner.png
hagish : solar system loaded from file, asteroids marking planet orbits
+
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_chainlightning.png
 
+
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_lightning.png
<gallery>
+
http://zwischenwelt.org/svn/sfz/sfz/trunk/data/icon/rn_pd_plasma.png
Image:20070804002556_748.png
+
afterburner,chainlightning,lightning,plasma(like flamethrower)
</gallery>
+
 
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 17:34, 3 August 2007 (CEST) : a very simple trading starts to work, you can now buy and sell iron for other things, but so far they're useless, but that'll change soon.
+
hagish and i will be on http://dusmania.de/ this weekend.
+
 
+
=== 2007 July ===
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 11:39, 29 July 2007 (CEST) : we extracted/capsuled all the code shared between sfz, iris2 and other projects and put it into an external lib so we have it in one central place and don't have to merge changes back and forth every time.
+
As the main part of the lib is the lua binding for ogre we decided to call it lugre : http://lugre.schattenkind.net
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 01:11, 28 July 2007 (CEST) : i've been busy with work (and with watching a cool animee) this week, so i didn't find the time to write here...
+
 
+
Thanks to rookie1 from the freegamer forums it might now be possible to compile and run sfz on a 64 bit linux, but i can't test...
+
He sent in a patch, i added it to trunk, and also fixed a few other things that might be troublesome in 64 bit.
+
see this thread for details : http://freegamer.schattenkind.net/index.php?t=msg&goto=111
+
I also squashed a few bugs, cleaned a few things along the way, and made a new win32 exe, so you might want to run the updater if you were having problems.
+
 
+
To clear up misunderstandings about the "as long as" in my last post :
+
We will implement some form of spacefolding travelspeed and possibilities to interrupt it, but i think we need to focus on other things first, see this thread for an interesting discussion about the topic : http://freegamer.schattenkind.net/index.php?t=msg&th=11
+
 
+
There is a lot of code being shared between iris2 and sfz, and soon also by a third game-project by hagish and ray, so we will probably extract that code into a seperate lib to avoid having to merge new stuff back and forth every time.
+
It's mainly a lua wrapper for the most important ogre parts as well as several utils for networking and similar things.
+
 
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 02:01, 23 July 2007 (CEST) after thinking a while about space-folding travel and all the things to be considered when implementing it, i came to the conclusion that we don't really need it yet as long as the planets are so close together and not on a realistic scale, and other things like trading and missions are more important right now, and those usually involve traveling to other star systems, so i started a bit with the code for a list of star-systems
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 00:33, 21 July 2007 (CEST) experiments with simple engine-particles
+
<gallery>
+
Image:Sfz_20070720232923_620.png
+
Image:Sfz_20070720233030_168.png
+
Image:Sfz_20070720233159_188.png
+
</gallery>
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 20:00, 20 July 2007 (CEST) : screenshot of two new models by isha :
+
<gallery>
+
Image:Sfz_20070720194102_095.png
+
</gallery>
+
 
+
[[User:Hagish|hagish]] 18:14, 16 July 2007 (CEST) : now laser and explosions have sound effects if you activate it in the config
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 17:31, 16 July 2007 (CEST) : win compile was successful, so we now have a new binary released :
+
 
+
[http://ghoulsblade.schattenkind.net/sfz/sfz_1.0.489.zip win32-binary] (build 489, ca32 mb)
+
 
+
you might need to install this before it works:
+
Microsoft Visual C++ 2005 SP1 Redistributable Package (x86) :
+
http://www.microsoft.com/downloads/details.aspx?FamilyID=200B2FD9-AE1A-4A14-984D-389C36F85647&displaylang=en
+
 
+
in the initial setup dialog, choose directx instead of opengl otherwise it crashes for an unknown reason so far.
+
 
+
it includes an updater.exe to get the latest code changes, and as we are working mainly on the lua code which does not need to be compiled, you can get the latest changes this way even if we don't make a new release for a while.
+
A new binary release will only be needed if there are changes to the c++ code, which are rather rare.
+
Please note that sfz is still work in progress and there isn't any real gameplay yet, just a few things to try out =)
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 02:46, 16 July 2007 (CEST): i successfully compiled and modified the iris updater for sfz, but it is useless until we have win binaries in the svn. i'll try to compile some using the project file by pascal in the next few days.
+
 
+
<gallery>
+
Image:Sfzupdater.jpg
+
</gallery>
+
 
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 20:11, 14 July 2007 (CEST) :  we now have our own [http://freegamer.freeforums.org/viewforum.php?f=31 forum], thx to charlie aka [http://freegamer.blogspot.com/ FreeGamer] for hosting us !
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 05:48, 14 July 2007 (CEST) : another coding night with hagish and lots of stuff done. we can now walk around inside the ship and place several furniture items and stuff like doors, ladders, grates, engines, and it even works well over network =)
+
 
+
<gallery>
+
Image:Sfz_20070714035126_506.png
+
Image:Sfz_20070714035531_330.png
+
Image:Sfz_20070714040003_485.png
+
Image:Sfz_20070714040026_691.png
+
Image:Sfz_20070714050121_574.png
+
Image:Sfz_20070714050841_777.png
+
Image:Sfz_20070714050953_868.png
+
Image:Sfz_20070714051727_658.png
+
Image:Sfz_20070714052006_796.png
+
Image:Sfz_20070714052213_678.png
+
Image:Sfz_20070714052359_373.png
+
Image:Sfz_20070714052410_691.png
+
Image:Sfz_20070714052429_580.png
+
Image:Sfz_20070714052624_652.png
+
</gallery>
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 00:14, 12 July 2007 (CEST) : i'm currently busy learning and writing tests for my studies, so i won't get to do much until the end of next week.
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 19:04, 9 July 2007 (CEST) : hagish skinned the space-suit and the generator :
+
<gallery>
+
Image:Sfz_20070709184925_886.png
+
Image:Sfz_20070709184928_054.png
+
Image:Sfz_20070709185615_660.png
+
</gallery>
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 19:41, 7 July 2007 (CEST) : enhanced the interior mesh generation a bit more, holes should be fixed now, some fine borderlines and a little tweaking of the ambient light vector greatly improve the spatial awareness, and i changed the firefly model to look better from the inside.
+
 
+
<gallery>
+
Image:Sfz_20070707194118_352.png
+
Image:Sfz_20070707194155_207.png
+
Image:Sfz_20070707194239_745.png
+
Image:Sfz_20070707194246_854.png
+
Image:Sfz_20070707194247_844.png
+
</gallery>
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 03:41, 7 July 2007 (CEST) : experiments with walking around inside space-ships have begun, it's flying rather than walking and there is no collision detection so far, but we've got the inverted ship-mesh with inner walls removed.
+
also hagish made a few nice 3d models : a space-suit to avoid billboard troubles, a couch : one of mankinds greatest achievements which should be aboard every starship, and a engine/generator like model that we'll use for various machinery, being able to hue/recolor meshes via lua code sure multiplies the uses for a new mesh :)
+
 
+
<gallery>
+
Image:Sfz_20070707033144_670.png
+
Image:Sfz_20070707033223_508.png
+
Image:Sfz_20070707033355_434.png
+
</gallery>
+
 
+
[[User:Hagish|hagish]] 02:36, 7 July 2007 (CEST) : another coding night :)
+
<gallery>
+
Image:Screen spaceman.png
+
Image:Screen spaceman couch.png
+
</gallery>
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 19:56, 6 July 2007 (CEST): we're currently working on a "location" system, that enables us to move objects to seperate "dimensions", for example to avoid destroying a fighter-object when it is docking, it is simply moved to a seperate "hangar-dimension".
+
these things can later also be used for walking around inside spaceships (we're also working on generating experimental interior meshes for that) and for wormholes, etc...
+
such a "dimension" has nothing todo with fancy graphics, it's just a logical grouping of objects so coordinate systems can overlap without objects interfering with each other. this isn't quite finished, the hudmarkers and other things still have to be adjusted. the current "hangar dimension" is nothing more than a gray empty space so far =)
+
 
+
<gallery>
+
Image:Sfz_20070706195857_949.png
+
</gallery>
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 23:41, 4 July 2007 (CEST) : player now starts with a bigger ship and can launch from it in a little fighter and dock back on if they wish. meshes and gui for this are still very simple, but the code behind it works and can now be cleaned and extended.
+
 
+
<gallery>
+
Image:Sfz_20070704234311_804.png
+
</gallery>
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 02:02, 4 July 2007 (CEST) : it is now possible to exit the current spaceship and float around in a space-suit, you can also enter ship.
+
but there is a funny bug : i did put a check in to ensure that you couldn't enter pirate ships, but i forgot to check if the object to be entered is actually a ship, so now you can enter anything (except pirate-ships) and fly around as an asteroid, as a space-station or even as a wormhole :)
+
 
+
<gallery>
+
Image:Sfz_20070704020218_453.png
+
Image:Sfz_20070704020256_906.png
+
Image:Sfz_20070704020401_241.png
+
Image:Sfz_20070704020406_840.png
+
Image:Sfz_20070704020452_835.png
+
Image:Sfz_20070704020520_778.png
+
</gallery>
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 19:36, 3 July 2007 (CEST) we've got a billboard space-suit ! so i guess we'll soon add something to enter and exit spaceships
+
 
+
<gallery>
+
Image:Sfz_20070703192609_285.png
+
</gallery>
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 18:19, 1 July 2007 (CEST) i reorganised the object code a bit in preparation for buying,selling and installing equipment
+
  
  
 +
<endFeed /> <!-- place startFeed tag at the start of every month, and endFeed at the end -->
  
=== archive ===
+
== DevBlogArchive ==
 
[[DevBlogArchive]]
 
[[DevBlogArchive]]

Latest revision as of 10:15, 6 July 2012

we moved the devblogs of our projects into one common blog: http://schattenkind.net/blog/

for download, see Main Page


2008 March

new blog software and url

Hagish 15:35, 8 October 2008 (CEST) because of some issues with the wiki bloging we moved to a "normal" software. you can find the new post under http://schattenkind.net/blog/ .

working on the new gui system

Ghoulsblade 23:33, 12 March 2008 (CET) : we're still testing in the iris codebase mainly, but the new gui system will be used for sfz as well, a little preview about some upcoming features for text display :
20080312230402_299.png

2008 February

bit quiet lately

Ghoulsblade 00:40, 15 February 2008 (CET): we're still around, but rather busy lately with other stuff, some interesting things that will probably be used for sfz planets later are being experimented with in iris (see iris devblog ), namely shadows, sky, and also a few grass and tree experiments. Also code for TextureAtlas and geometry-batching for better performance has been added there.

and we're also brainstorming for a redesing of the guicode, a few notes here.

2008 January

fastbatch

Ghoulsblade 21:09, 4 January 2008 (CET) : we've been working on a class for grouping the geometry of up large numbers of objects into a single batch, similar to the Ogre::StaticGeometry, this allows better performance at a slightly increased vram cost. It is a bit more lightweigt and flexible than static geometry, and has been designed to construct the batch fast so it can be used for contructing the batch at runtime, whereas Ogre::StaticGeometry was rather designed to construct the batch while loading a level or similar, so it wasn't really designed for fast construction. Also our batch allows colouring instances via vertex colour, and allows the whole batch to be repositioned and rotated as a whole. The main reason for developing it was to improve performance in iris, but it will probably be useful for things like asteroid fields in sfz as well, and maybe for stuff on planets later as well.

2007 December

merry xmas to all ! quiet here lately due to work on iris

Ghoulsblade 16:17, 24 December 2007 (CET) : merry xmas to all who read this =) it's been a bit quiet here lately, we're currently busy working on performance improvements for iris, but at least some of them might also be interesting for sfz later =) We're experimenting with multitexturing, tilebased terrain, transition masks, and a more dynamic batched geometry class than the Ogre::StaticGeometry, as we need to change the contents at runtime, and want to avoid costly reading mesh data back from VRAM. And since iris and sfz share the lugre lib, both projects benefit from the resulting code improvements and addtitions.

2007 November


tractorbeam experiment

Ghoulsblade 21:03, 26 November 2007 (CET) : first experimental tractor-beam weapon. Can be used to drag enemies inside the range of deadly close-range weapons.... or for having fun with asteroids :)

<flvplayer width="320" height="240" loop="false">TractorBeam01.ogg</flvplayer>


short video of interior walk

Ghoulsblade 16:22, 22 November 2007 (CET) : no new feature, but i made a short video showing how interior walking and furniture placement currently looks

<flvplayer width="320" height="240" loop="false">Interior.ogg</flvplayer>
Interior.ogg(1.5mb)

weapon icons : cooldown bar

Ghoulsblade 22:17, 20 November 2007 (CET) : the weapon icons now have a bar displaying the cooldown time until the weapon can be fired again.

clickable weapon icons

Ghoulsblade 17:16, 19 November 2007 (CET) : now we've got clickable weapon icons, left-click to fire the weapon, rightclick to open a context menu (currently only for unequipping)

better movement and more weapons

hagish 13:00, 18 November 2007 (CET) : Last night and the last 2 hours we improved the ship movement. Now we have a non-newton-max-velocity navigation. This not very realistic but far more fun. There are some new weapons too: splitting rockets (nut,star), chain laser, lightning gun

split rocket

hagish 16:45, 17 November 2007 (CET) : the first new weapon starts to work. a split rocket and a chain laser. http://sfz.schattenkind.net/wiki/images/f/f0/Splitrocket.ogg

weapon icons 2

Ghoulsblade 17:14, 11 November 2007 (CET) : BR48 showed up in the freegamer irc and asked if he could help out anywhere, now he started making nicer icons for us =)

Error creating thumbnail: Unable to save thumbnail to destination

forum thread : http://forum.freegamedev.net/index.php?t=msg&th=443

weapons and enemygroups

hagish 19:40, 4 November 2007 (CET) : last night ghouly and i worked a little bit on sfz. he startet to implement the new weapons and i merged the contributed enemygroup patch and started to implement a hero-defense like game mode.

weapon icons

Ghoulsblade 03:44, 1 November 2007 (CET) hagish and i met today, and we decided to focus on combat. some notes : Sfz31.10.2007 i already started making a few weapon-icons, they're rather simple, but should do for getting started.



rn_pd_rocket.png rn_pd_rocket_strong.png rn_pd_rocket_split1.png rn_pd_rocket_split3.png rn_pd_rocket_split_star.png (unguided missiles, last 3 can split into multipe warheads, in different formations)

rn_pd_missile.png rn_pd_missile_strong.png rn_pd_missile_remote.png (guided/homing missiles, the last one is remote controlled)

rn_pd_laser.png rn_pd_projectile.png rn_pd_railgun.png rn_pd_charging.png laser,projectile,railgun,charging

rn_pd_edrain.png rn_pd_tractor.png rn_pd_emp.png rn_pd_plasma_glob.png e-drain,tractor,emp(paralyzing shockwave),plasmaglob

rn_pd_afterburner.png rn_pd_chainlightning.png rn_pd_lightning.png rn_pd_plasma.png afterburner,chainlightning,lightning,plasma(like flamethrower)


DevBlogArchive

DevBlogArchive