Bay 12 Games Forum

Finally... => Creative Projects => Topic started by: Eagleon on April 19, 2009, 06:36:15 pm

Title: Earthsage; Physics-heavy platforming digging game thing project
Post by: Eagleon on April 19, 2009, 06:36:15 pm
WARNING: Long, rambling idea thread that isn't much use to anyone.

I've been toying with this idea on and off for a year or so, amongst several others, and recently it's gotten to the point in planning where I believe it might be possible the way I want it. There's no real programming that's been done on it yet - I really didn't want it to fizzle out after finding out that my vague planning is unworkable with the engine I had made. But I've started to create the skeleton of some parts of it, and since I very rarely post and mostly lurk, I thought I'd share with you guys what I'm doing (besides making a strong AI, but that's another thread)

Earthsage is (will be?) a heavily atmospheric game in which the player delves deep into an ancient crater that is inexplicably (for the sake of variety) not very geologically sensible; the tongue in cheek reason for this is that this is a potential mine for magical crystals, extremely valuable commodities that are not strictly legal for any but those the King gives permits to. The crystals constantly give off a field of energy which alters their environment in subtle ways. The idea is influenced heavily by Clonk Rage, Dwarf Fortress (of course), Liero, Falling Sand Game, and The Incredible Machine, to name a few.

In their natural form, the crystals don't do much. Maybe warm their surroundings a bit, or make plants grow faster. But when they're ground into lenses, prisms, and other forms, their powers are magnified and can be used in precise ways. For instance, one of the first tools the player will make is a melt-gun; a void crystal (which blocks and absorbs most energy put into it like a black hole, but can violently explode if too much is put in at once depending on its quality) is placed in front of a fire crystal lens, which is placed in front of a mana crystal. These activate passive forms like lenses with their own strength, and also carry a charge like a wire if placed between two other crystals. The void crystal is attached to a trigger mechanism lifting it out of the way when pulled, and the result is a finely focused thermal drilling tool.

The player has a skill called Engineering that gives you mostly randomly chosen ideas for inventions such as these that can be carried with you at all times, but you may also place crystals, lenses, prisms, etc manually in the environment, and they'll interact with each other in scripted ways. As the number of types of crystals are fairly limited, the system would be manageable, although extensive.

Your goals are your own - within the crater are other Sages that want the crystals there for their own use, as well as a great deal of riches in the form of metal ores, ampure (a very tough semicrystalline material used in this world for armor and decorative purposes), and the crystals themselves. There would be all sorts of underground features, from dank pools with strange subterranian toads living on their banks, to magma chambers created by large lodes of fire crystals in their center, to verdant caverns of slowly growing green life crystal. All crystals would influence the mood of their surroundings, glowing and mixing together with other light sources.

The surface would exist as a sort of testing ground; creatures there are mutated by the strange energies of the huge mana crystal at the center of the crater, more powerful than most of what you'd encounter underground, and there's a dragon waiting as one of the biggest challenges in the game. There's also merchants waiting just before the rim to deal with you, and if you can manage the engineering required, you can even sell them huge useless blocks of dirt by dropping them onto the wagon they've parked by the edge. If you manage to break it they'd come after you.

Which brings us to the next big part of the game, and the one that would probably be the most difficult to implement - the terrain can fall and roll around, crushing whatever is beneath it, melting in heat, dissolving in acid, etc. etc. Now, anyone can dream of something like this, but I believe I have a way that it might be possible.

To start with, the whole map (which is very, very large. Think on the order of 25 km wide and down an arbitrary amount) is compressed using BSP techniques. The map would not be pregenerated; instead, as you dug there would be a certain (small) chance that you encountered a new feature appropriate to what area you're in. The feature would then be placed in a way that didn't impact what was already there. This way, I could have areas with active conflicts as the player enters them, but if he waited too long one side of the conflict wouldn't have dominated before he got there.

The map is composed of block tiles that are traversed smoothly by players and enemies; in-memory position data is kept track on a rougher per-tile basis, and as entities move they cycle their x,y positions from 0 to 255 within the tile, but otherwise if the player went out of visual sight of an entity, its movements would become abstracted so that it didn't have to do all the acceleration and collision calculations all the time. Collision is not pixel-perfect; rather, each tile type (there are 32, counting two that objects never intersect) has a polygon defined past which the player or other objects may not move. The tile types I have laid out are here

(http://img.photobucket.com/albums/v99/Eagleon/tiles.jpg)
this is a reduced-size guide I made for creating my tile sets - each tile set would contain up to eight variations in graphical style

For terrain that falls, I will be able to trace the outline of a multi-tile block and create a simple polygon that can then be passed to either my own or an external physics library. The tiles are eliminated and an image is generated that falls and rotates with the new entity. The best part about this is that I only need to store three bytes of information per static tile: what block type it is (I have 3 bits left over after the 5 I use for terrain information), what material it is, and how much damage has been done to it. The rest (crystal effects, heat, etc) can be handled more sparsely, as for the most part these are rare, localized events.

There's more I've written down for all this, but I've rambled long enough. I had wondered if anyone was interested in something like this. Not that I'm motivated much by that (there's no guarantee I'll stick with this long enough to put all the planned features, or even make it playable :P), but Bay12's forums are a diverse place, and I think that feedback from it is likely to be valuable :)
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: inaluct on April 19, 2009, 07:08:27 pm
It sounds great! The only issue I can think of might be a lack of enough simple objects to make with the crystals. The melt gun, for instance, requires three crystals of specific types. The player would have to hunt around for those three if they wanted a melt gun. I think that the idea would benefit from having other things that are functionally similar to the melt gun but don't use that combination of crystals be available.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: The Mad Engineer on April 19, 2009, 07:17:45 pm
Forget just mining, etc.

If you could manage the terrain collapse, you could create a worms-esque system.  Make a huge death lazer that slices the terrain in half, collapsing everything above it.  Create a terrain generater engine, making walls to ward off enemies.

If you really went in depth with the system, maybe you could simulate the generation of stalagtites/mites...

Hard-to-implement-yet-cool idea: With the crystals, instead of assigning presorted machines that you can build with them, assign them an EFFECT (This crystal focuses light in this direction, this crystal creates heat, this crystal causes grass to grow).  If the player wants to create a lazer-powered stomping machine, they have to invent it themselves. It would create a larger sense of satisfaction and sandbox experience.


This is a fantastic idea you've got, btw...
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Gunner-Chan on April 19, 2009, 07:28:41 pm
You should get together with the procedural caves guy, this concept plus his generator would be very awesome.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Eagleon on April 19, 2009, 08:16:16 pm
You should get together with the procedural caves guy, this concept plus his generator would be very awesome.
I saw his thread; it kind of startled me because I was poking at working at the same thing at the time. I honestly am learning this stuff as I go. The idea I was turning around in my head was to take a perlin noise layer, subject it to some sort of contour lines filter, choose one loop in the resulting image, and convert it to a polygon that could be used to pick which tiles to draw. That's a ways away though; first I have to get a foundation that uses the tiles I laid out as options to refuse to generate things in a way that doesn't look like random crap. They all have to flow together properly or else bits of the graphics in the terrain will have straight edges, and that's not the visual style I want. The first test of this will probably be the mouse being used to draw acceptable terrain like a paint program.

Forget just mining, etc.

If you could manage the terrain collapse, you could create a worms-esque system.  Make a huge death lazer that slices the terrain in half, collapsing everything above it.  Create a terrain generater engine, making walls to ward off enemies.

If you really went in depth with the system, maybe you could simulate the generation of stalagtites/mites...

Hard-to-implement-yet-cool idea: With the crystals, instead of assigning presorted machines that you can build with them, assign them an EFFECT (This crystal focuses light in this direction, this crystal creates heat, this crystal causes grass to grow).  If the player wants to create a lazer-powered stomping machine, they have to invent it themselves. It would create a larger sense of satisfaction and sandbox experience.


This is a fantastic idea you've got, btw...

Thanks ^^ That's really what I was originally going for with the crystals. What I'd really like to see is something in the spirit of those crazy people that have tried to make basic computers within DF. I've always loved electronics and stuff, and I wanted to make some crystals act as capacitors, resistors, transistors, even (maybe) logic gates. Ideally there would also be stuff that isn't quite possible in the real world too, like paired sympathetic crystals transferring an effect at very large distances, or stuff that plays a little with the physics. I want the very largest of void crystal explosions to suck off bits of the surrounding terrain and make lasting areas of altered gravity.

It sounds great! The only issue I can think of might be a lack of enough simple objects to make with the crystals. The melt gun, for instance, requires three crystals of specific types. The player would have to hunt around for those three if they wanted a melt gun. I think that the idea would benefit from having other things that are functionally similar to the melt gun but don't use that combination of crystals be available.

Yeah, that still needs a little exploration. You should be able to buy crystals from other Sages using the money you've earned from mining (you'd start with a simple pick that can also be used as a weapon), and the ones near the crater's edges would really be the friendliest to deal with. I've also considered a territory system for the AI; other Sages really wouldn't like you encroaching on their dig site and stealing their crystals. This should be fairly simple to apply - entities that create territories would make invisible markers in each large block as they dig or move around.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Hawkfrost on April 19, 2009, 08:27:03 pm
Sounds like a great idea, I hope something comes out of it.

Will there be a good diversity in monsters, underground features and tools/weapons?
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Eagleon on April 19, 2009, 08:44:57 pm
That was the plan :3 It'd be very atmosphere oriented with a lot of diversity in environment, despite being underground, and it's you against whatever nastiness you encounter. I definitely would put in a decent amount of sharp things, hehe. I think that it's not too implausible to have material types (and thus terrain) be moddable, along with feature generation. Now that I think of it, material type per-block can be stored as a pointer to its definition, so my previous self-limit of 256 material types isn't that important after all.

I think I'd eventually go ahead with the polygon-from-potentially freehand lines idea so that people can just input an outline of an underground bunker if they wanted to, make a feature definition with some conditions on its possible placement as well as what spawns inside it where, and have python scripts control what material each block is set as; the simplest would just set it all as one material, but you could also make it look for specific features mathematically, or bleed in some of the terrain the player dug through part of the way in.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Poltifar on April 20, 2009, 03:01:40 am
You mentioned something about other metals and resources being found in the crater. It would be nice if the player could also mine those, like gold and silver, to fund their purchases of other stuff from the merchants. Even better, it would be great if metals like iron or the 'ampure' you mentioned could be used in contraptions they make.

Also, any plans to make this game multiplayer (in the long run)?
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Eagleon on April 20, 2009, 09:17:12 am
I don't really know yet. I'll try to keep the procedures and objects general enough that it's possible. There are bound to be at least some issues with the movement abstractions, and cheating might be a problem. How big these are is an unknown. But the structure seems to lend itself well to it - you have two edges if you're looking at the crater from the side, after all. The players could be from competing nations, or even different races. Plans were to include an ancient formian nest as a competing force deep underground, and their surface-dwelling descendents might want to go down and say hello. They could team up and dig together, or make traps and automated defenses and gradually dig towards each other for a big final conflict. It'd be nice to have.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Bromor Neckbeard on April 22, 2009, 05:01:35 pm
Sounds intriguing.  I like the idea of a game with the physics emphasis of, say, Worms or Cortex Command and the "exploring the underground" aspect of Dwarf Fortress.  If you get this into a playable state, I'll be glad to help you beta-test it.  I hope more comes of this than just a forum topic, because it's a fine idea.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: sonerohi on April 23, 2009, 04:14:29 pm
If the King himself is making this happen, he'd want it done right, right? So could bases be made, and staff hired, to help you persist? So instead of having to learn armorsmithing for yourself, you could hire a blacksmith.

A way to counter it is to limit the blacksmith 2-3 levels below the player, and instead of one of those 'instant making abilities' posessed by the players, he requires you to come back and get it later.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: filiusenox on April 26, 2009, 12:56:07 am
Bloody hell.I was looking for a game like this.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Eagleon on April 27, 2009, 02:39:35 pm
If the King himself is making this happen, he'd want it done right, right? So could bases be made, and staff hired, to help you persist? So instead of having to learn armorsmithing for yourself, you could hire a blacksmith.

A way to counter it is to limit the blacksmith 2-3 levels below the player, and instead of one of those 'instant making abilities' posessed by the players, he requires you to come back and get it later.

Permits are for any kind of use of the crystals at all. They're to keep the kingdom's supply high, limiting exports, and to somewhat keep track of the largest concentrations, as they're an extremely valuable commodity in warfare. They're not as unusual to have as a knighthood, but they are a status symbol.

The explanation for your own presence is that you received a permit due to a display of ingenuity in one of several fields that caught the attention of one of the king's Sages, and at least an outward appearance of loyalty to the King. No one expected you to actually use it for anything but a mundane business, as for the most part expeditions to the crater and other mines are funded by much more powerful entities, if they're funded at all. The place is very, very dangerous after all, especially near the center. It's also in the territory that the Kingdom has been putting peaceful exiles in for a hundred years or so back, which is starting to bite the king in the ass as they get more organized.

But yeah, I guess I can see hiring NPCs somehow. I don't want things to become too close to DF, but if I'm going to have autonomous Sage npcs, I might as well take advantage of the work that would have to be done to allow for that. He's going to want to be paid more than he'd make on his own in a safer place, though, and you'd have to send word back home somehow with the traders, saying you're looking for skilled labor.

News from the front: Work is happening on this. I have a classification system for the tiles which should make writing code to use them easier, I've made a writeup for what the tutorial for making graphics files might look like (to be released, as I haven't decided what all will be included or even how they'll be handled yet), and I've found what looks like something that might work for a physics library to build on: Box2D (http://www.box2d.org/index.html (http://www.box2d.org/index.html)). I'd be doing some work on it myself, as it's not enough for fluids or attractive/repellant forces, but I'm looking at the code when my mind starts rejecting the other work I'm doing, hehe.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Eagleon on May 01, 2009, 10:41:50 pm
UPDATE:
BljdgnkirngilksjASJIFSLJKGNKJ GDSD OH GOD THE MATHS

Ahem.

There are some problems with how I wanted to do the tiles. Namely, rather than 32 tiles as I originally planned for, seamless digging without convoluted and unrealistic terrain smoothing requires upwards of 36 more tiles. This means more artistic work to create tilesets, more work to make the generators for the terrain, more work to make sure everything meshes absolutely smoothly (kinda), draws properly (probably), and translates to physics objects well (definitely).

In other words, a hell of a big headache that probably wouldn't look any better than if I just used a texture with alpha maps for tiles instead.

So that's what I decided to do, going with my original plan to have each tile use two bits per quadrant for how it's been mined. That is, before realizing that it still leaves a great deal of work in regards to terrain generation and translating the whole thing to polygons, not to mention making sure it snaps to surrounding terrain properly as it's dug away. As I mentioned in the first post, I have other things I'm working on, so I could either spend months getting these very basic mechanics ready, then several more months creating acceptable environment definitions to generate terrain, or I can reduce the complexity of the system.

If anyone thinks they can come up with an elegant solution for making the quad-based tiles work, I'm open to discussing it. Otherwise, I'm doing myself and future development in this a favor by reducing the tiles to being based on which sides have been mined instead.

This means that there will be sixteen tiles per tile page. Each side represents an isosceles right triangle out of the whole square.

Spoiler (click to show/hide)

It's sadly clunky, but it allows for actual textured graphics, which means there can be stuff done to make it less ugly hopefully. Since there are so few tiles, it'd be much easier work to create many variations in the terrain, and even transitions between different terrain types (something I was dreading). It also has the advantage of using only four bits(!) per tile, meaning I can use the other four bits left in the byte-per-tile to store other information.

And it will allow me to proceed with actually developing the damned thing :P

Other ponderings - Box2d seems to allow for ropes. This makes me dream of a piton gun; shoot one end into an anchor point, shoot the other into a physical object like a block of terrain or an enemy, and it'll swing around with appropriate force. If it's too heavy, it could yank the piton out at either end (if fired from too far away) or break the rope. Fun! Lots of possibilities there.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: LegoLord on May 01, 2009, 11:07:49 pm
This sounds so freakin' sweet!  Magic laser drills!  You won me over with that.  Seriously, this is an awesome idea and I hope progress on it goes well for you.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Eagle on May 02, 2009, 01:07:42 am
Shit. This is awesome. I love terrain modifying tools in general, and this sounds like a literal sandbox. Im looking forward to your progress, and I would be happy to help make stuff up for it if you wanted. I fail at coding though, so i cant help there unfortunately...
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: LegoLord on May 02, 2009, 08:24:21 am
I wanted to ask something about those sympathetic crystals you mentioned.  If you make a matching pair into lenses, would hitting one side of one lens with a laser make the laser come out the other lens?  That could be awesome, and a good reason to make them rare.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Eagleon on May 02, 2009, 11:04:00 am
I wanted to ask something about those sympathetic crystals you mentioned.  If you make a matching pair into lenses, would hitting one side of one lens with a laser make the laser come out the other lens?  That could be awesome, and a good reason to make them rare.

It would indeed, and it would also add to the beam's power. If the beam is too powerful for the lens down the line to handle, it may crack or explode, so you'd need to arrange them from impurest to purest if you wanted a crazy death-ray, and you'd need to search for better (purer, larger) crystals and up your skills in lens grinding quite a bit too. For the largest rays-o-deaths, the ending crystal would have to be quite large originally, and very pure, so the difficulty in making a sympathetic lens (they're created by splitting a lens perfectly down the middle along its grain using precisely controlled steam-pressure) compounded with the clunkiness of carrying around a large fragile meniscus of pure firey death (perhaps on a cart?) would indeed make things like that rare. But awesome.

I haven't worked out all the details on how mixing lenses will work. Like what happens when you take a fire lens and focus it into a prism with a growth lens? I guess I could make it color-based. Red and green create yellow, which in my original list would be lightning. That kind of makes sense.

Focusing a beam onto a lens that would absorb its color could create nasty or interesting consequences. The obvious thing to do for some colors (for instance fire focused on water) would be for it to explode, but for less volatile combinations the lens could gradually convert to a different type of crystal. Either a mix of the two colors, or the beam's color if there's no intermediate (Orange = earth, yellow = lightning, the red would gradually be forced out)

Prisms made of a crystal whose color blocks part of the incoming beam would act the same as lasers in the same situation, but perhaps quite a bit less quickly. But a clear prism (mana) would split all beams into their component spectra, creating a rainbow of MAYHEM  :D
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: LegoLord on May 02, 2009, 11:32:51 am
So hopefully one could potentially build a tank with an array of complex weapons, all powered by some sort of gigantic rainbow array at your base?
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Eagleon on May 02, 2009, 11:42:35 am
Hehe sure, why not. Lay siege to the crater! Maybe you could get some sort of huge reward from the king for clearing the surface so that they can move in and dig.

That, and mole tanks. If there are tanks, there will be mole tanks. Box2d has what I need for vehicles, so I'm not too worried about not being able to implement stuff like that. There could even be an interface to build them yourself, so that you could add armor and have your own custom design. Hmm.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: LegoLord on May 02, 2009, 11:47:27 am
Oh.  I guess I should've worded that differently  :-[

By tanks I just meant some armored shell with wheels on or something to make it easier to move.  But real tanks are cool too. [thumbs up]

I just had the image of a dude picking up an un-wheeled metal shell covered in weapons trying to carry it around by his hands.  ;D
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Boksi on May 02, 2009, 12:32:02 pm
Could we build a tank that moves by way of a dozen legs that end in a steam-powered piton? Basically it moves the leg onto a surface and uses steam pressure to drive the piton into it.

And equipped with retracting, rotating and heat seeking turrets, preferably ones that can't target your boiler.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Eagleon on May 02, 2009, 01:03:17 pm
It's possible I suppose, with how I have the engine planned, but not really likely. I don't want to get too steampunk with it all, especially not steammecha. Maybe after other things have been included and the game is playable in a couple of ways, I'll have parts for that sort of thing buyable, if I can come up with a plausible explanation for how they would work with crystal tech. No guarantees, though. I don't want to ruin the game's flavor.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Hawkfrost on May 02, 2009, 08:05:57 pm
It's possible I suppose, with how I have the engine planned, but not really likely. I don't want to get too steampunk with it all, especially not steammecha. Maybe after other things have been included and the game is playable in a couple of ways, I'll have parts for that sort of thing buyable, if I can come up with a plausible explanation for how they would work with crystal tech. No guarantees, though. I don't want to ruin the game's flavor.

You could have an engine powered by a water + fire crystal setup that creates steam, thus propelling the vehicle forward, and ropes used to change the direction of the momentum by turning the engine.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: qwertyuiopas on May 03, 2009, 08:16:42 am
Or it could be described as some crazy scholar's attempt at creating a powerful war machine without using crystals, but it was expensive so the only portotype can be bought in parts for large ammounts of whatever the currency is. Due to engineering issues, a boiler couldn't fit on the prototype so it ironically used crystals to produce the steam. Because of that, all funding was cancelled, and the parts were put up for sale, though nobody was crazy enough to buy them. There could be a hidden quest like thing where you can meet up with the guy and he has ideas for how to make his prototype reliable enough for regular use, though it would still need a crystal powered boiler, but he would need the parts.

Thus, you could include a leg-mech without breaking the setting of the game.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: LegoLord on May 03, 2009, 08:45:17 am
Or the mechas could be like number adders in DF, being made by applying things that are normally used for other purposes.  This could include the crystal boiler thing.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Raz on May 05, 2009, 09:59:09 pm
How much programming experience do you have? Have you ever worked on a similar kind of project? Do you have enough free time and dedication to consistently work on this?

Before you ask, I would like this project a lot, and I'm asking this because so many people plan to work on a game and it just dies out for various reasons. People get excited, but in the end they often lack the proper skill and dedication to pull it off.

My advice to you (hopefully I don't sound patronising, just trying to help you), is start out small. Assuming you are indeed a programmer, don't recruit more than one or two other people, if any. Plan out the basics first and continue the brainstorming later, when the need arises.

I'm sorry if I'm coming off as a know-it-all, but I've been in co-lead on a rather ambitious game project for two years now, and people have come and gone over that period. While we were (and are to some degree still are) hammering out the basics, people started working on stuff that was unneeded at that point, and just kinda lost interest over the course of time. In the meanwhile me and my co-lead never lost interest and did pretty much all the multitasking. (We're mostly trying to avoid attention, but if you're interested just ask anyway ;))

Kinda drifting off-topic here ( :P), but what I guess I'm trying to tell you is that dedication is probably the most important if you're serious about making this.

Good luck.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Raz on May 05, 2009, 10:00:08 pm
How much programming experience do you have? Have you ever worked on a similar kind of project? Do you have enough free time and dedication to consistently work on this?

Before you ask, I would like this project a lot, and I'm asking this because so many people plan to work on a game and it just dies out for various reasons. People get excited, but in the end they often lack the proper skill and/or dedication to pull it off. It's sad to see how these things go, really.

My advice to you (hopefully I don't sound patronising, just trying to help you), is start out small. Assuming you are indeed a programmer, don't recruit more than one or two other people, if any. Plan out the basics first and continue the brainstorming later, when the need arises.

I'm sorry if I'm coming off as a know-it-all, but I've been in co-lead on a rather ambitious game project for two years now, and people have come and gone over that period. While we were (and are to some degree still are) hammering out the basics, people started working on stuff that was unneeded at that point, and just kinda lost interest over the course of time. In the meanwhile me and my co-lead never lost interest and did pretty much all the multitasking. (We're mostly trying to avoid attention, but if you're interested just ask anyway ;))

Kinda drifting off-topic here ( :P), but what I guess I'm trying to tell you is that dedication is probably the most important if you're serious about making this.

Good luck.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Eagleon on May 06, 2009, 12:46:23 pm
How much programming experience do you have? Have you ever worked on a similar kind of project? Do you have enough free time and dedication to consistently work on this?
Not enough, no not really, and yes, in that order :P

Usually programming isn't entirely a means to an end for me. The challenge and reward of figuring something out that I couldn't do before is enough to keep my interest, or else I'd just be writing. Believe me, I've had enough experience with what I lose interest in to know that this is something I can finish eventually. The big push might only come after I finish my C course this fall, but I am working at it now and learning the things I need to in the process.

A small update: I'm working on the basic graphics functions right now. Cairo seems like a decent bet for my needs, but it's a little difficult to wrap my head around all the functions it throws at you. Still, I've got things importing and drawing in iteration. The next step is to scale the tiles appropriately for the resolution, and let the tile type determine which tiles to draw in its section, instead of just plopping them down manually.

Or the mechas could be like number adders in DF, being made by applying things that are normally used for other purposes.  This could include the crystal boiler thing.

This is what I'm leaning towards. If the game's ancillary mechanics allow for it, so be it, but other things will go in first, and I'll maintain the mostly-renaissance-ish feel I want for the main game.
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: LegoLord on May 30, 2009, 05:19:37 pm
I was looking at mood rings earlier today and had an idea for this.  I'll put it in spoilers because it sounds like an Easter-egg type thing.

Spoiler (click to show/hide)
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: eerr on June 01, 2009, 03:27:56 am
too much design, not enough implementation.

you need to make a crystal with light now, or this is going to die very very quickly(or start studying on it consistently)
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: Eagleon on June 05, 2009, 02:47:12 am
too much design, not enough implementation.

you need to make a crystal with light now, or this is going to die very very quickly(or start studying on it consistently)
That's nice. Thank you for your input.

I was looking at mood rings earlier today and had an idea for this.  I'll put it in spoilers because it sounds like an Easter-egg type thing.

Spoiler (click to show/hide)

It's not what I want to work on right away, no, but putting in some personality for NPCs and the player and ways to affect it/be affected by it is good practice for my next game, should I ever return to work on it ;) I won't even bother putting it down here - I'd get laughed at too much. It's pretty ambitious, but not in a technical sense, more in a dwarf fortress sense.

There was already a Mind crystal type planned for use, and that would play a role. Its purpose would be first to allow the player to sense and affect other creatures through solid stone, but obviously there are other potential uses.

Update for people interested:

I'm in the process of moving in with my boyfriend at the moment. I've worked on the tile engine off and on since the last post, and I've got things pretty well organized to start work on the converter to input a drawn map into the game. In the meantime, I have no internet, and finding a new job plus keeping my old one is extremely difficult.

There's no bus back home after I get out of work, so I've been relying on rides from relatives, friends, etc. That'll get on their nerves quick, so almost all of my effort has gone into finding any employment at all in the city I now live in. Boring, stressful, and nerve-wracking, but preferable to living with my lunatic parents.

So yes, progress has been slow, but I will not be daunted by heartless scalliwags such as eerr! :P Onward!

But first sleep.
Title: Earthsage
Post by: [P]sYDoNiA on June 14, 2009, 01:10:50 am
Damn!

This sounds so sweeeet and I really hope this gets created into something playable soon...
I really like how the crystals just do things and you gotta attach em together to get them to make machines, it reminds me of Garry's Mod...

I think that there should be basic design blueprints in the players possession and a mode or setting to enable other blueprints to be scattered around randomly. That would make it awesome and would help the absolutely clueless to know what to do...
Title: Re: Earthsage; Physics-heavy platforming digging game thing project
Post by: ousire on June 22, 2009, 02:01:52 am
reading about those simpathetic crystal things immidatly made me think of a way to make a pair of glasses into eye lazers. if you could have a really small crystal and a fire gem or whatever inside some sort of remote-conroll sized box to keep them in place, firing the gem into one crystal, its linked crystal could be your glasses, simply activate the gem and BOOM