Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 [2] 3 4 ... 6

Author Topic: Dwarf Fortress Talk #9: Feedback  (Read 43453 times)

eclipsetail

  • Bay Watcher
  • [HIGH_FIVES]
    • View Profile
Re: Dwarf Fortress Talk #9: Feedback
« Reply #15 on: August 05, 2010, 07:09:16 am »

Mounts!

Yes!

sweitx

  • Bay Watcher
  • Sun Berry McSunshine
    • View Profile
Logged
One of the toads decided to go for a swim in the moat - presumably because he could path through the moat to my dwarves. He is not charging in, just loitering in the moat.

The toad is having a nice relaxing swim.
The goblin mounted on his back, however, is drowning.

Lord Herman

  • Bay Watcher
    • View Profile
Re: Dwarf Fortress Talk #9: Feedback
« Reply #17 on: August 05, 2010, 04:19:13 pm »

Glad to see DF Talk is back!  :)
Logged

nenjin

  • Bay Watcher
  • Inscrubtable Exhortations of the Soul
    • View Profile
Re: Dwarf Fortress Talk #9: Feedback
« Reply #18 on: August 05, 2010, 04:54:47 pm »

Quote
Martial Arts and Targeted Strikes

HEART PUNCH!

Seriously, that would be hilarious for martial artists to be able to target organs instead of just body parts. Although that might cause issues when all players want to do is run into Kobold warrens and kick them in the genitals to prevent breeding.

Quote
Guarding

Is this a framework we might eventually see applied to Shield Use as well? 

It sounds like it's already a little complicated already. Any thoughts as to abstracting it or simplifying it? Such as everyone just having a "guard value" that tries to select the most optimal blocks, and deducts from the guard value per turn when blocks are used? So like, GV 50, left arm blocks head attack, GV -25, right arm shield blocks body attack, GV -25, no GV remaining to block subsequent attacks. Something like that. And then the player could go in and define what their optimal blocks look like. So their best block would be left hand, zone 1, 2nd would be right hand zone 2, and zone three with either hand is their least favorable block. And they could make changes if they get wounded or the situation changes.

So the game would tend to ignore attacks to the legs and leave it up to dodge and/or mitigation. Speaking of, all this blocking procedurally follows after a failed dodge, I assume?

Quote
Advanced Skill Sets

I find this idea really cool, but problematic because in Dwarf Mode at least, I already feel a little overwhelmed by the skill list. I agree too that questions about "What does this mean?" make implementation tricky.

Just a couple things: Is it possible to do replacements within the skill list? Say, a character reaches 10 sword skill and it gets replaced with "Fencing?" Assuming that could be done, it might even be like an RPG mechanic. Assuming all the right resources are available, it could go "You have reached Sword Skill level 10. Would you like to choose a specialization? Your currently available options are:......

Secondly, and this just occurred to me listening to the Talk on skills, would it be possible to either a) subordinate some skills to others as they appear on the skill list, b) add headers much like we see in labor assignment to the skill list when we build dwarves for Fort Mode?

So we could see something during Embark that looks like....

LABOR SKILLS:
Carpentry 0
Wood Cutting 0
Farming 0

ect....

COMBAT SKILLS:
Swords 10
    Fencing 3
Axes 0

Something like that.
« Last Edit: August 05, 2010, 05:21:44 pm by nenjin »
Logged
Cautivo del Milagro seamos, Penitente.
Quote from: Viktor Frankl
When we are no longer able to change a situation, we are challenged to change ourselves.
Quote from: Sindain
Its kinda silly to complain that a friendly NPC isn't a well designed boss fight.
Quote from: Eric Blank
How will I cheese now assholes?
Quote from: MrRoboto75
Always spaghetti, never forghetti

nophilip

  • Bay Watcher
    • View Profile
Re: Dwarf Fortress Talk #9: Feedback
« Reply #19 on: August 05, 2010, 05:43:00 pm »

Am I the only one who found the "bonus hour" way more entertaining/interesting than the official podcast?
Logged

Jiri Petru

  • Bay Watcher
    • View Profile
Re: Dwarf Fortress Talk #9: Feedback
« Reply #20 on: August 05, 2010, 06:38:37 pm »

Amazing! Great this is back, I've been growing impatient and restless. Thanks everyone for the amazing job.

Quote from: nophilip
Am I the only one who found the "bonus hour" way more entertaining/interesting than the official podcast?
Yeah, me too. I guess it's because there wasn't much "content" in the official podcast. There were one or two mega-questions that had eaten most of the time, and then there was the art discussion which wasn't very DF related.

Not that I'm complaining. Along with the bonus part we got 2 hours of entertaining and enlightening talk. Thanks again!
Logged
Yours,
Markus Cz. Clasplashes

Mephansteras

  • Bay Watcher
  • Forger of Civilizations
    • View Profile
Re: Dwarf Fortress Talk #9: Feedback
« Reply #21 on: August 05, 2010, 06:44:18 pm »

I've always enjoyed the talks. Glad to have another one to listen to!
Logged
Civilization Forge Mod v2.80: Adding in new races, equipment, animals, plants, metals, etc. Now with Alchemy and Libraries! Variety to spice up DF! (For DF 0.34.10)
Come play Mafia with us!
"Let us maintain our chill composure." - Toady One

billw

  • Bay Watcher
    • View Profile
Re: Dwarf Fortress Talk #9: Feedback
« Reply #22 on: August 05, 2010, 07:02:18 pm »

On threading:
I guess a hundred other programmers have pointed this out already, but spreading inner loops over multiple threads is a very simple operation. Even the most naive implementation can see decent gains. You have a an operator and a set of data, e.g. operator is "find_next_task", and the set of data is a vector of dwarves and a vector of availableTasks. Instead of just:
Spoiler (click to show/hide)
you have:
Spoiler (click to show/hide)
Obviously it takes a few more lines of code, but simple threading can be done safely just following a couple of simple rules: copy all shared data for each thread, and don't access global state from the threaded function.

I wouldn't mention this except that I used to have threading apprehension, but after a bit of messing with it I realised it can be used safely and simply. Also I would like to be able to take off the 100 dwarf / no child / no temperature limits out of my init_d.txt file :)

Logged

devek

  • Bay Watcher
  • [KILL_EVERYTHING]
    • View Profile
Re: Dwarf Fortress Talk #9: Feedback
« Reply #23 on: August 05, 2010, 07:17:49 pm »

It isn't that simple lol.

There is overhead to start the thread(or notify the pool). There is overhead when your thread needs to write its result or share any data with anything else. There is even overhead OS scheduler overhead to have the thread run at all.  Sure, it is easy to thread anything... not so easy to actually get gains while very easy to end up with a slower program.... I've taken many a multithreaded program and turned it back into a single thread multiplexed operation just so it would run faster... lol. Furthermore, new processors like the i7 actually reduce the benefit of threading programs like DF that have low thermal loads.


Logged
"Why do people rebuild things that they know are going to be destroyed? Why do people cling to life when they know they can't live forever?"

billw

  • Bay Watcher
    • View Profile
Re: Dwarf Fortress Talk #9: Feedback
« Reply #24 on: August 05, 2010, 07:45:44 pm »

I knew someone would pipe up with "its not that simple ". Actually it is simple: if the gains out-weigh the overhead then its a win. You try the naive method, and if you get gains then its good, if not then you need to worry about the more complicated issues or you go do something else. You don't need to start by thinking "this is way to complicated I'm just not going to even try it".
The mistake people make when learning multi-threading is trying to perform complicated asynchronous operations that modify global state when they don't understand the issues involved. Hence I say pick the low-hanging fruit of costly inner loops operating on large data-sets. Hopefully the code is structured to limit global state modification, or can be easily re-factored to this end. In these cases its pretty easy to get a win even if you have the overhead of large data set copies, and quite often EVEN with the overhead of starting fresh threads every time. It doesn't matter that it is non-optimal practice from a multi-threading stand point, only that it takes less time over all. And when you want to squeeze more out of it later, you still have room for optimization and you have already begun the process of re-factoring.
Logged

Capntastic

  • Bay Watcher
  • Greetings, mortals!
    • View Profile
    • A review and literature weblog I never update
Re: Dwarf Fortress Talk #9: Feedback
« Reply #25 on: August 05, 2010, 08:24:13 pm »

This is for DF feedback, not coding talk please.   Multithreading has been discussed in a million other places.
Logged

mnjiman

  • Bay Watcher
    • View Profile
Re: Dwarf Fortress Talk #9: Feedback
« Reply #26 on: August 06, 2010, 01:39:10 am »

This is for DF feedback, not coding talk please.   Multithreading has been discussed in a million other places.
but multithreading is mentioned in the DF talk, so expect people to give feedback on it.
Logged
I was thinking more along the lines of this legendary champion, all clad in dented and dinged up steel plate, his blood-drenched axe slung over his back, a notch in the handle for every enemy that saw the swing of that blade as the last sight they ever saw, a battered shield strapped over his arm... and a fluffy, pink stuffed hippo hidden discretely in his breastplate.

Capntastic

  • Bay Watcher
  • Greetings, mortals!
    • View Profile
    • A review and literature weblog I never update
Re: Dwarf Fortress Talk #9: Feedback
« Reply #27 on: August 06, 2010, 02:16:09 am »

Feedback is fine, but arguing about how complex or simple it is to implement isn't really needed.  Toady's aware, I'm sure.
Logged

devek

  • Bay Watcher
  • [KILL_EVERYTHING]
    • View Profile
Re: Dwarf Fortress Talk #9: Feedback
« Reply #28 on: August 06, 2010, 02:18:15 am »

Toady is aware, he isn't dumb. Some of the people who keep bring it up, I'm not so sure about :P
Logged
"Why do people rebuild things that they know are going to be destroyed? Why do people cling to life when they know they can't live forever?"

Capntastic

  • Bay Watcher
  • Greetings, mortals!
    • View Profile
    • A review and literature weblog I never update
Re: Dwarf Fortress Talk #9: Feedback
« Reply #29 on: August 06, 2010, 02:19:19 am »

There's really no need for calling people dumb, either.
Logged
Pages: 1 [2] 3 4 ... 6