Monday, May 31, 2010

Refactoring

I’m in the middle of refactoring some of the combat code to allow me to target any space on the map not just NPC’s. This will allow you to drop gas clouds on terrain and use space between to funnel enemies down etc and play more advatange with the terrain.

Most of my code tho takes an NPC as a target, so I’ve got to tweak things a bit.

Posted by Stu on 05/31/2010 at 11:39 AM Permalink to this post.
Filed Under : ComputersDevelopmentFishguts
Tags:

(0) Comments
Share/Bookmark

Monday, May 24, 2010

Busy Busy Busy

Things have been pretty busy lately. On the retro front I have a Jiffydos chip coming for the C128 as well as a uIEC/SD for it, which will help lessen the need for ye-olde floppy disks for the C128 and its ability to move the drive out of alignment (all those old drive head banging copy protect schemes and such). Both of these are coming from Jim Brain. Still no word on the Ultimate 1541-II, apparently they are shipping the first 40-50 units very soon, only I know I’m not in that close to the top of the batch :/

Been working a lot on my java client/server roguelike semi-mmo called Deeprun.

And yeah been working somewhat on Fishguts still, you turn over one bug only to find a few more. It is the way of it lately.

June is going to be hectic, Joys birthday, Alexanders birthday, our 5th wedding anniversary. I still need to complete the wooden pendulum clock (5th ann is wood).. so lots of sanding and fitting fiddly parts together but the clock looks pretty awesome (I’m building serpentine).

Posted by Stu on 05/24/2010 at 08:59 AM Permalink to this post.
Filed Under : ComputersDevelopment
Tags:

(0) Comments
Share/Bookmark

Tuesday, May 11, 2010

Playing and bugging

Nothing huge to report lately. A snafu in upgrading my Ubuntu broke SlickEdit, which luckily they upgraded to a new major version which fixed the Ubuntu regression. New Ubuntu and new SlickEdit is nice smile

So, been playing my game, eating my dogfood and doing lots of combat… and I noticed something funny. When you would get close to an archer or the archer would run out of arrows, the AI has them switch to a melee weapon.. and they started doing twice damage. So when they unequipped the bow, instead of removing the bows damage stats they added.. then they equipped a sword and that added the swords damage stats.. gulp! Turns out I had two routines for unequipping items and the monster AI was using an old one that was not used anywhere else, which was bugged, so now everyone uses the same (players, monsters, npc’s).

Several other minor tweaks and things behind the scenes. Some map editing and implementing story and details, slowly growing my game.

Tweaking my random dungeon routine, I already have Cellular Automata for organic cave generation, now I’m appropriating my dungeon generation routine from another one of my roguelikes, this one generates rooms and corridors, it has some nice properties that I like that you don’t see in a lot of roguelike dungeon gen routines, namely corridors can loop back on themselves and link up and connect rooms. Most routines in the RL community create a branching dungeon that is somewhat linear in its layout, they don’t link back on themselves, which I think is a pain for gameplay, but it does drive you forward.

I’m still trying to come up with a good name too :( Maybe in the end I’ll stick with Fishguts, which was not my intention.

Posted by Stu on 05/11/2010 at 09:35 AM Permalink to this post.
Filed Under : ComputersDevelopmentFishguts
Tags:

(0) Comments
Share/Bookmark

Saturday, March 27, 2010

A retro crpg

Sometimes there are many distractions in life, and I feel I am my own worst enemy.  I have not even finished my current retro-styled CRPG, but ofcourse I have kicked some notes and code around for a C64/C128 CRPG.

Random thoughts to follow;

Going to utilise a 1 bit fastloader, something like u3load (because the routine is public and it is also supported by ultimate1541-ii), this lets me get a ‘fastload’ as well as music/gfx during load to retain felxability.
I’ve already written simple scripts that will be turned into native 6502/6510,6809 code. Targeting C64, (maybe apple2) and Coco3.

The coco3 makes it nice that it has a good stack of ram, the C128 obviously gives you a nice amount to play with, but the C64 can be constraining, memory mapped IO ports all over the map. I’m hoping I can decouple the kernel so I get the full 64kb ram, but if there is a cartridge or REU, I’ll loose 8kb.

The plan would be to have a simple API in place, a few kb ram with a jump table giving basic routines, whose sole job is to load/unload the scripts. If I can’t nuke the kernel rom space, I can nuke the basic rom and give myself about 50kb.

I’ve already got an experimental script compiler outputting 6510 asm. I need to get it to interface with CC65..

sigh.. I dont think I’ll multiplex sprites but I need to try and get the fastest tile rendering routine I can out of the C64’s MCM mode…

Posted by Stu on 03/27/2010 at 09:41 PM Permalink to this post.
Filed Under : ComputersDevelopmentFishguts
Tags:

(3) Comments
Share/Bookmark

Monday, March 15, 2010

Minor Updates

What? no activity in a long time?? Lots of things have been happening in the personal life, parents came for a visit, grandmother passed, wife directing a play so I get both kids in the afternoons/evenings, etc. Huge project crunch at work..

But I did find the time to tweak some of my tools to remove more of the handwritten code and replace it with data generated from the maps. The final piece was for auto generating the teleport locations.

I have also enlarged my map, I felt it was too cluttered so I embiggened it and spread the continents out more. It always irked me a little to hop in a sailing shop and sail only a few spaces and traverse the seas.. So I made more use of some open space and moved things out further making sea travel longer, but not monotonous. Sea travel is important and it needs to feel like it takes you a while to get from A to B (and the movement speed of the ship is slower than that of land speed movement). It certainly wont be as redundant and monotonous as it was in Demon’s Winter which had huge tracts of open ocean and a very poorly laid out world.

Still beavering away on the combat engine affects

Posted by Stu on 03/15/2010 at 11:52 AM Permalink to this post.
Filed Under : ComputersDevelopmentFishguts
Tags:

(2) Comments
Share/Bookmark

Tuesday, February 09, 2010

Expression Engine Plugin AddToAny

I knocked out a plugin for ExpressionEngine, it adds the ‘addtoany’ bar at the bottom of posts.

Adding the tag

{exp:addtoany name="{title}" url="{title_permalink}"}

to your templates generates the javascript for the AddToAny code.

You can get it here;

https://redmine.bloodycactus.com/projects/ee1addtoany

Posted by Stu on 02/09/2010 at 04:29 PM Permalink to this post.
Filed Under : ComputersDevelopment
Tags:

(0) Comments
Share/Bookmark
Page 2 of 117 pages  <  1 2 3 4 >  Last »