Class: MakeHalls

Inherits:
LacunaUtil::Task show all
Defined in:
lib/lacuna_util/task/make_halls.rb

Constant Summary collapse

RECIPES =

Array of the 4 recipes used to make Halls of Vrbansk

[
%w( goethite halite     gypsum       trona     ),
%w( gold     anthracite uraninite    bauxite   ),
%w( kerogen  methane    sulfur       zircon    ),
%w( monazite fluorite   beryl        magnetite ),
%w( rutile   chromite   chalcopyrite galena    )

Instance Method Summary collapse

Methods inherited from LacunaUtil::Task

#initialize

Constructor Details

This class inherits a constructor from LacunaUtil::Task

Instance Method Details

#runObject



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/lacuna_util/task/make_halls.rb', line 15

def run
    super

    Lacuna::Empire.planets.each do |id, name|
        puts "Checking on #{name}"
        buildings = Lacuna::Body.get_buildings(id)['buildings']
        archaeology = Lacuna::Body.find_building(buildings, 'Archaeology Ministry')
        inventory = Lacuna::Archaeology.get_inventory(archaeology['id'])

        made = 0

        RECIPES.each do |recipe|
            numbers = recipe.collect { |item| inventory[item] || 0 }
            number = numbers.sort.first
            list = recipe.map { |item| item.capitalize }.join ', '

            next if number ==  0

            puts "Making #{number} halls with #{list}"

            # Note: there is a limit of 5000 plans made per request.
            #   I'll fix this 'issue' when it actually becomes one. :)
            #   For the moment just run the script as many times as you
            #   need to make all the halls.
            rs = Lacuna::Archaeology.assemble_glyphs(archaeology['id'], recipe, number)
            made += rs['quantity']
        end

        if made > 0
            puts "Successfully made #{made} Halls of Vrbansk"
        else
            puts "Didn't make any halls! :("
        end
    end
end