Welcome, Guest. Please login or register.

Login with username, password and session length

 
Advanced search

1411496 Posts in 69373 Topics- by 58428 Members - Latest Member: shelton786

April 25, 2024, 06:56:25 AM

Need hosting? Check out Digital Ocean
(more details in this thread)
TIGSource ForumsCommunityDevLogsDwarfCorp: Ruthless Capitalism RTS in a Fantasy World
Pages: 1 ... 7 8 [9] 10 11 ... 37
Print
Author Topic: DwarfCorp: Ruthless Capitalism RTS in a Fantasy World  (Read 100316 times)
Quarry
Level 10
*****


View Profile
« Reply #160 on: October 28, 2012, 07:34:21 PM »

Better get a non-programmer art banner
Logged
BleakProspects
Level 4
****



View Profile WWW
« Reply #161 on: October 28, 2012, 07:37:06 PM »

word art forever!
Logged

Seiseki
Level 5
*****


Starmancer


View Profile WWW
« Reply #162 on: October 28, 2012, 07:38:42 PM »

Elegant in it's simplicity and has a pretty good acronym, DC.  Beer!
Are there going to be dwarves in suits though? I'd love to see it somewhere Grin

As long as people don't think it's a synonym to small corp, like here we have the giant corp and this is the Dwarfcorp  Cheesy

Also, 1940's style propaganda posters are a requirement!


(just add a beard! j/k)
« Last Edit: October 28, 2012, 07:44:51 PM by Seiseki » Logged

BleakProspects
Level 4
****



View Profile WWW
« Reply #163 on: October 28, 2012, 07:52:04 PM »

Logged

Plasticware
Level 1
*



View Profile
« Reply #164 on: October 28, 2012, 08:00:01 PM »

We have a name! Exciting stuff, here.

I'll get around to a proper logo. And titlescreen. Eventually.
Logged
BleakProspects
Level 4
****



View Profile WWW
« Reply #165 on: October 28, 2012, 09:15:26 PM »

http://www.dwarfcorp.com/
Logged

Kurt
Level 5
*****



View Profile
« Reply #166 on: October 28, 2012, 09:31:48 PM »

Give that website a gold medal, I've never seen anything as great as that.  Tears of Joy
Logged

Seiseki
Level 5
*****


Starmancer


View Profile WWW
« Reply #167 on: October 28, 2012, 09:38:54 PM »

About the website, I'm a bit concerned that all the content might be overwhelming.
You should probably dial it down a bit.. Giggle
Logged

Eigen
Level 10
*****


Brobdingnagian ding dong


View Profile WWW
« Reply #168 on: October 29, 2012, 02:59:11 AM »

Minimal is in this fall/winter season.
Logged

zede05
Level 2
**



View Profile WWW
« Reply #169 on: October 29, 2012, 03:02:38 AM »

Haha, nice name, I like it. Although I think the logo could be better, like a silhouette of the logo with the dwarves building it.
Logged

Jorum
Level 0
*


What's up Internet!


View Profile WWW
« Reply #170 on: October 29, 2012, 06:38:27 AM »

The rendering reminds me of Magic Carpet (though more cube-y). Looks great!
Logged
JigxorAndy
Level 6
*


Working on Dungeon Dashers


View Profile WWW
« Reply #171 on: October 29, 2012, 07:58:47 AM »

This is looking really pretty! I like the new name as well. It grabbed my attention as opposed to the WIP thread name. Can't wait to see this progress more and the website take off.
Logged

Twitter / Dungeon Dashers: Website / Steam Store
laserfire
Level 0
**


Level 10,000


View Profile WWW
« Reply #172 on: October 29, 2012, 01:51:46 PM »


Watch your kerning on that title.



I messed with it but it's kinda nasty not being able to work with the live type.
Logged

Swaggermuffin
Level 1
*


View Profile
« Reply #173 on: October 29, 2012, 03:59:32 PM »

It's gonna be a little difficult not thinking of it as "Some DF-Looking Minecrafty Thing" anymore.
Logged
DustyDrake
Level 10
*****



View Profile
« Reply #174 on: October 29, 2012, 04:21:02 PM »


Watch your kerning on that title.



I messed with it but it's kinda nasty not being able to work with the live type.
I don't see a differen- ooooohhhh.

Logged

BleakProspects
Level 4
****



View Profile WWW
« Reply #175 on: October 29, 2012, 04:24:53 PM »

I'm glad that my thread is starting to look like the equivalent of a Head-On! commercial.  Wink DWARFCORP. DWARFCORP. DWARFCORP.

In other news, this week was Performance Week I. I got around to fixing *most* of the bugs caused by switching from octrees to spatial hashing for storing chunks, and I *think* it sped up a bit, but not as much as I'd hoped. Anyway, it was necessary for scaling some things up. Building chunks is marginally faster, as it lighting, planning, raycasting, and more.

I also improved planning dramatically by doing pseudo-bi-directional A star. Now, if the plan fails, instead of just returning the best path so far (which is usually off in a bad direction), the dwarf will instead try to plan from the goal to it's current position before giving up. This fixed most of my issues with dwarves not being able to plan from outside to inside.

Now I'll focus on gameplay again. I'm trying to decide whether to redo the control scheme to a more traditional RTS scheme over the current Dwarf-Fortress-esque scheme (ie, select units and tell them what to do, rather than dwarves automatically deciding what to do based on the tasks you create). Or I might postpone this for a while and instead focus on implementing combat and death.
« Last Edit: October 29, 2012, 06:14:08 PM by BleakProspects » Logged

BleakProspects
Level 4
****



View Profile WWW
« Reply #176 on: October 29, 2012, 07:21:25 PM »

There are forums now:
http://www.dwarfcorp.com/forum/

Keeping with the theme, there is nothing there... YET.
« Last Edit: October 29, 2012, 08:40:22 PM by BleakProspects » Logged

BleakProspects
Level 4
****



View Profile WWW
« Reply #177 on: October 31, 2012, 05:08:18 PM »

Started implementing another creature so that dwarfs could fight it. I am quickly beginning to realize how unscalable my AI code is.

Currently, my AI is an explicit finite state machine where each state is a class I have to instantiate. A dwarf has about ~20 states. Just defining the state machine takes ~300 lines of code, and the states themselves make up over 1000 line of code.

This is going to get exponentially worse as I add more entities and states, so I think I will try something radical instead. Looking at doing Goal Oriented Action Planning, or STRIPS.

http://web.media.mit.edu/~jorkin/gdc2006_orkin_jeff_fear.pdf

No idea how to do this yet. Might be going down a dead end.
Logged

BleakProspects
Level 4
****



View Profile WWW
« Reply #178 on: November 01, 2012, 04:38:19 PM »

Implemented a barebones version of the GOAP algorithm today. This may not look like much, but it's probably the most important output I've seen from the game so far!  Grin

Quote
Goal: KillEnemy (EnemyDead = true)

Start:
HasWeapon: false
EnemyDead: false
AtArmory: false
NearEnemy: false


Plan:
AcquireTarget
PlanToArmory
AcquireWeapon
LeaveArmory
PlanToTarget
AttackTarget

GOAP (Goal Oriented Action Planning) works by giving an entity a goal world state, and a set of actions it can perform which change the state of the world. Actions have pre conditions and post conditions. It then plans in an "action-state space." This is similar to the STRIPS algorithm developed for robotics at Stanford in the 1970's. It was used for NOLP and FEAR in the early 2000's.

What's *REALLY* cool about this is that I didn't have to tell the AI what to do in every situation (which I would have to do in a state machine). The AI instead figured out *on its own* that it needed to first go to an armory, then get a weapon, then leave the armory, then attack an enemy. It actually finds the sequence of actions with the least cost that satisfy its goal. So if there were more ways to kill an enemy than by this method (say with your fists) which were more expensive, it would only pick those as a last resort.

Next I'll apply this to actual dwarf AI and start getting really intelligent behavior. Also, this has the plus of being applicable to my robotics phd research...
« Last Edit: November 01, 2012, 04:46:30 PM by BleakProspects » Logged

poe
Guest
« Reply #179 on: November 01, 2012, 05:22:16 PM »

Implement Maslow's Hierarchy of needs please.

Logged
Pages: 1 ... 7 8 [9] 10 11 ... 37
Print
Jump to:  

Theme orange-lt created by panic