Home | Rules and Guide | Sign In/Create Account | Write a Post | Reddit | #ludumdare on irc.afternet.org (Info)

Thanks for making Ludum Dare 26 AWESOME! See you in August!

Ludum Dare 26 — April 26-29th, 2013
[ Results: Top 100 Compo, Jam | Top 25 Categories | View My Entry ]
[ View All 2346 Games (Compo Only, Jam Only) | Warmup ]

[ 10 Sec Video Compilation (x3) | 260 Game Video Compilation | IndieCade Deal | Ludum Deals (Unity Deal Ends Soon!) ]


Posts Tagged ‘AI’

My first ever AI is done!

Posted by (twitter: @RawBits)
Sunday, December 16th, 2012 9:59 pm

So I let my AI roam my procedurally generated maze. :) Check the video!

I’m back and aiming for the jam

Posted by (twitter: @RawBits)
Sunday, December 16th, 2012 4:51 pm

The weekend wasn’t on my side sadly but I’m here and aiming for the jam.

In the last hour I have made a tree with the pathways in the maze – levels are procedural ofcourse. Here is a picture of the tree visualized.

Visualized paths in tree

Now, on to my first ever legit AI in my life: a simple DFS.

Day One Progress

Posted by (twitter: @Winterblood_Dev)
Saturday, December 15th, 2012 9:38 pm

Drew a bit of a blank on the theme, so decided to write a fairly traditional stealth-’em-up. This time I have mostly resisted the urge to make it pretty, and have got the core mechanics working instead!

You can turn the torches on and off, collect loot, and I have a sinister capsule patrolling a series of waypoints, coming after you if he spots you, and returning to patrol if he loses you again. Title and pause screen are working.

Day 1 progress

Day 1 progress

Day 2 is all about making gameplay from those core mechanics, and tarting it up – although one important thing I haven’t yet done is factor shadows into the visiblity code. But I know how that will work, just haven’t done it yet. Just done a last-minute stress test to see how many dynamic lights I can get away with, and the answer is “not many”. I may burn a lot of tomorrow optimising…

I got 60FPS in all iDevices!

Posted by
Sunday, October 7th, 2012 1:19 am

Here it is

the video is of an iPad2, and it’s over 60FPS!

I have added a menu scene and some action to the game, now I’m going to complete the first big level with two mobs and a big boss, attacks, magic spells, and all those stuff. A lot of fun and work! :)

Let’s go with this star travel!

My butt is now even taller?

Posted by
Sunday, August 21st, 2011 12:39 pm

Gettin’ that polish going!~  I’ve added a title screen, as well as a way to control if a Human or CPU controls each of the two sides.  Also my AI is getting smarter!  It’s still quite beatable; my search depth is… next to nothing really, so it only gets as far as predicting your next move and making some vaguely intelligent guesses as to what kinda of things improve its position.  I’ve still got about 6 hours though, and pretty much the only thing I’ve got left to do aside from AI improvements is adding some movement animations to help see what’s going on.  I’m actually at a point where I’m about to ask some IRC peoples to help me test.  If you’d like to help with that just let me know; I’m Luthwyhn in IRC.

Here’s a shot of my title screen!

I hope everyone else is getting done too!  I’ve been too busy to keep with with chat more than occasionally.  Keep up the good work, though!

Tall Butt is Completed*!

Posted by
Sunday, August 21st, 2011 3:56 am

Yes, you heard right, folks!  My game is a completely playable implementation of Tablut as of about 9 hours ago!  There’s a few minor things it doesn’t do (warn you for Check/Mate), and plenty of places that can be polished (Movement animations?)… but the game can indeed be played!  Currently, though, it only works as a 2-Player game.  My goal with the remaining ~15 hours is to implement a mildly competent AI system who can play as the Attack and/or the Defender, at your own choice.  Currently the AI moves at random until and unless it has a move that will allow it to win immediately, in which case it takes that move.  It’s not much, but it is indeed a start!  The visuals have changed just a little since my last update, so I’ll post a new screenshot as well:

BLDR [final]

Posted by of Platymuus (twitter: @SpaceManiacX)
Sunday, December 7th, 2008 6:09 pm

BLDR is done! It probably could have used more levels and obstacles, but I think it’s great! Postcompo version will definetly include more levels.

Download it here: http://www.filesavr.com/bldr

EDIT: I forgot to include it in the instructions, but arrow keys to move and R to restart the level.

Postcompo edit: New download link at http://kittylambda.com/files/BLDR.zip (thanks to PsySal)

AI

Posted by
Sunday, April 20th, 2008 10:17 am

Phew. I just got the “AI” system I’ve been working on the last hours to work at least a decently. The enemy ships don’t move totally random anymore, they try to line up so they can hit your ships at least. It’s still really stupid though, especially when close to the screen edges but it’s as good as I’ll bother to make it I think.

I’ve also implemented levels and game-over conditions, a shop where you buy new ships between the levels and done tons of bugfixes/speedups since yesterday. There is still one really annoying bug where the sprites sometimes doesn’t get cleared completely and leave one or two lingering pixels, but I’m sure I’ll figure that out soon.

After that there is mostly fine polishing left to do, the shop screen is very, very minimalistic right now, to the point of not making any sense, the interface graphics could also need some love and after that it’s on to game balancing.

Golden Rule of Adding Moving Gameplay Elements

Posted by
Monday, February 18th, 2008 2:40 pm

Copied from my Dev Blog

So eventually you’re going to have to put in moving/walking/talking elements of various varieties in most any game. Maybe they are lemmings. Maybe they are AI controlled bot opponents in an FPS. Or maybe they are soldiers in an RTS, or enemies in a hack and slash. In any case it’s daunting to add these gameplay elements because the behaviour will ultimately require so much tweaking and experimentation. Where do you start?

Carefully creating a system for managing/handling such creatures is… somewhat uninspiring work. And worse, what kind of result do you get? Did you end up forgetting some crucial detail, or do you get a very complex, neural-net-enhanced AI that just acts stoopid? Good luck!

When you see your little guys moving around, only then do you start to see what practical changes you can make to their behaviour. It doesn’t mean you can’t have larger scale frameworks in place, it’s just that even with these frameworks (e.g., pathfinding) it’s not too obvious how to code the heuristics until you are into.

This brings me to my Golden Rule of Adding Moving Gameplay Elements:

First, just add something that stands still and you can zap.

Of course, “zap” might stand for anything. Maybe zap means clicking an RTS unit. Or talking to an NPC. But your first implementation should not worry about movement or anything. It should just create the actual unit, place it. You can start to work out your enemy placement/spawning system at this point, or start to think about how they will behave. But either way, what you really need before you can get started on any practical level is to get it placed. And in order to do that most easily, just forget everything else that will have to go into it for the time being.

I would do well to remember this in the future. This way of thinking avoids me spending all kinds of time mulling over millions of options without anything to start experimenting with. With a purely dumb element placed, purely dumbly, I am able to start the kind of wheedling experimentation neccesary to make it work.


All posts, images, and comments are owned by their creators.

[cache: storing page]