From b3ae67cc8bfe48520daf85b0e1fe614531c6bd6c Mon Sep 17 00:00:00 2001 From: jj Date: Fri, 21 Sep 2012 15:47:46 +0200 Subject: add scripts/deathcause --- NEWS | 1 + scripts/deathcause.rb | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 scripts/deathcause.rb diff --git a/NEWS b/NEWS index 2a930ff2..c1722974 100644 --- a/NEWS +++ b/NEWS @@ -33,6 +33,7 @@ DFHack v0.34.11-r2 (UNRELEASED) - fix/population-cap: run after every migrant wave to prevent exceeding the cap. - fix/stable-temp: counts items with temperature updates; does instant one-shot stable-temp. - fix/loyaltycascade: fix units allegiance, eg after ordering a dwarf merchant kill. + - deathcause: shows the circumstances of death for a given body. - digfort: designate areas to dig from a csv file. - drainaquifer: remove aquifers from the map. - growcrops: cheat to make farm crops instantly grow. diff --git a/scripts/deathcause.rb b/scripts/deathcause.rb new file mode 100644 index 00000000..178ebbc8 --- /dev/null +++ b/scripts/deathcause.rb @@ -0,0 +1,37 @@ +# show death cause of a creature + +def display_event(e) + p e if $DEBUG + + str = "#{e.victim_tg.name} died in year #{e.year}" + str << " of #{e.death_cause}" if false + str << " killed by the #{e.slayer_race_tg.name[0]} #{e.slayer_tg.name}" if e.slayer != -1 + str << " using a #{df.world.raws.itemdefs.weapons[e.weapon.item_subtype].name}" if e.weapon.item_type == :WEAPON + str << ", shot by a #{df.world.raws.itemdefs.weapons[e.weapon.bow_item_subtype].name}" if e.weapon.bow_item_type == :WEAPON + + puts str + '.' +end + +item = df.item_find(:selected) + +if !item or !item.kind_of?(DFHack::ItemBodyComponent) + item = df.world.items.other[:ANY_CORPSE].find { |i| df.at_cursor?(i) } +end + +if !item or !item.kind_of?(DFHack::ItemBodyComponent) + puts "Please select a corpse in the loo'k' menu" +else + hfig = item.hist_figure_id + if hfig == -1 + puts "Not a historical figure, cannot find info" + else + events = df.world.history.events + (0...events.length).reverse_each { |i| + if events[i].kind_of?(DFHack::HistoryEventHistFigureDiedst) and events[i].victim == hfig + display_event(events[i]) + break + end + } + end +end + -- cgit v1.2.1