WIP The Legend of Squishy
-
Yes, I do do a similar amount Of work per loop though. The only thing that changes is work due to throwing a lot of fireballs out, which does have a noticeable effect..
-
@toxibunny That makes sense! Thank you!
-
Okay so here’s a quick update: I got some animations in :)
I changed a whole load to get this working properly. I have scrapped structs for the npcs/spiders/cats/skellys etc, and now have loads and loads of arrays. So instead of entitylist[i].pos I have entitypos[i] instead. A minor change, but I think having such complicated structs was screwing things up somewhere, and this works, so good.
Also, another little thing which I think is cool is that I’ve written a small function that finds a model in the big list of 3d models I’ve got. There’s no ‘spidermodel = loadmodel(“quaternius/spider”) here - just one big array of strings of all the models, and another big array that I put all the results of loadmodel() into. I’ve got 90 models loaded now, which is cool, but I was having to scroll back to the start of my program and read through the list and make a note of it if I wanted to use a model, which was a) a pain, and b) meant I couldn’t insert anything at the start of my array due to it shifting everything following it. So now instead of hardcoding the model into the npc definition, I have a line that reads ‘entitymodel[i] = findTheThingInTheList(biglist,”spider”)’ and even if I modify the list, it still works! It even lets me know if it finds something more than once, or if it doesn’t find it in the list, which has prevented my cats from morphing into cattail ferns.
I’ve deleted all that stuff I had decorated my island with. They were just for testing anyway and it was taking ages to load. I wonder if there’s a better way. Minecraft loads things in in chunks as you’re playing. Maybe if I load things in it might be a more pleasant coding experience than having to wait for the whole lot to load in while looking at a blank screen (or even a loading screen). Something to think about anyway.
Animations are kindof weird. They’re measured in seconds, and represented by a float. There’s a few built in functions in fuze that gets the number of animations a model has, and their lengths. I have variables for currentanimation, animations (an array of lengths), currentframe, ‘walkinganimation’/‘jumpinganimation’ etc. (the different models have more or fewer animations, and not all in the same order), and a ‘stride length modifier’ that I’ll be using to make sure they don’t look like they’re skating or pedalling their legs. I’ve written a function called ‘animateEntity’ that takes in the array index of the entity, and a float representing speed, which updates the animation with the right values based on those variables I mentioned above making sure it loops properly. Tricky to get your head around at first because it’s not frame numbers you use in fuze, it’s a float between 0 and the animation length. Unexpected (for me), but once you grok it, it’s not so bad.
Anyway, that’s my update :)
Edit: one thing I forgot to mention is that I have ‘speed’ as an input into my ‘animateEntity’ function so that I can match the animation cycle to the actual speed they’re moving. That’s how those skeletons keep their feet planted firmly on the ground. They slow down their running as they slow down, type of thing. Doesn’t look so great on steep hills but Everywhere else it looks really natural :)
Speed is calculated using the distance() function, btw.
speed = distance( {0,0,0} , entityacceleration)
It gives you the length of the acceleration vector. Very handy to know.
I also changed their ‘point towards’ to ‘CurrentPosition+((CurrentPosition-PreviousPosition)*10000)’ - which keeps them pointing the direction they’re going (or close enough). Things get weird when you omit the *10000. Now when the cats run off cliffs, it looks like they’re deliberately diving down, and my spiders climb up and down slopes quite convincingly..
-
I tried running this and got an error saying getmapsurfacenormal() doesn't exist
-
Sounds like an old version not working with the latest patch. I’ll post an update here in the morning, with the latest version code. Thanks for the heads-up :)
-
Okay, try FGZ33MNDS3
-
Somehow I missed before that the game id was available for this :)
Took a while before I figured out I needed to press x to start, but then it works.
There are a lot of things going on with this project, so it's nice to see the progress on this :)
-
Since the last time I posted about this, I’d made the npcs more independent. I added variables for ’thing it’s interested in’, boredom level, home object, etc., and made it so they become interested in a nearby object of the type they like, and go to it. They stay there until they get bored, then become interested in something else and go to that. After a while they’ll become homesick, and go to home pos until they’re happy enough to go out again. The version shared has got much fewer npcs than previously, but it doesn’t help the framerate much so if you look for the ’numofcats’, ’numofspiders’ etc variables, you can bump it up quite a lot at the cost of only a few frames.
I also started to add a menu system in preparation for character customisation, weapon selection and an inventory, but got way confused about ’current menu choice’, current menu position, current cursor position, etc. Menu is on the right shoulder button - you can try it out to see it go screwy and crash with an ’index out of range’ error.
I had put squishy on hold waiting for the new patch with the added search function in the editor. Probably time to dip my toes back in now that the compo’s over. Maybe take some code from the competition game and give squishy a bit of a custom soundtrack...
-
X also switches between build mode and game mode. In build mode you can choose objects to place, delete, resize and rotate them, and you can also save it by clicking in the left stick. Saving takes over a minute and it’ll seem like it’s jammed, but it completes eventually.
-
I've tried loading this version:FGZ33MNDS3, but everytime I try to run it, the screen gets stuck focusing on a barn house. I've tried just waiting but nothing changes.
Am I the only one who's experiencing this?
-
@monkeee oh wait never mind I had to press the X button. lol