Skip to content

Commit

Permalink
Normalize script EOL style
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Aug 18, 2022
1 parent 598d7a1 commit da7c6e0
Showing 1 changed file with 41 additions and 41 deletions.
82 changes: 41 additions & 41 deletions install/scripts/commands/count_loot.py
@@ -1,41 +1,41 @@
__commandName__ = 'CountLoot'
__commandDisplayName__ = 'Count Loot'

def execute():
import darkradiant as dr

class SceneLootCounter(dr.SceneNodeVisitor):
loot_sum = 0
def pre(self, node):
entity = node.getEntity()
if not entity.isNull():
try:
self.loot_sum += int(entity.getKeyValue("inv_loot_value"))
except:
pass
return 1

class SelectionLootCounter(dr.SelectionVisitor):
loot_sum = 0
def visit(self, node):
entity = node.getEntity()
if not entity.isNull():
try:
self.loot_sum += int(entity.getKeyValue("inv_loot_value"))
except:
pass

scene_counter = SceneLootCounter()
GlobalSceneGraph.root().traverse(scene_counter)

selection_counter = SelectionLootCounter()
GlobalSelectionSystem.foreachSelected(selection_counter)

result = "Total loot: " + str(scene_counter.loot_sum)
if selection_counter.loot_sum > 0:
result += "\nSelection: " + str(selection_counter.loot_sum)

GlobalDialogManager.createMessageBox("Loot Count Results", result, dr.Dialog.CONFIRM).run()

if __executeCommand__:
execute()
__commandName__ = 'CountLoot'
__commandDisplayName__ = 'Count Loot'

def execute():
import darkradiant as dr

class SceneLootCounter(dr.SceneNodeVisitor):
loot_sum = 0
def pre(self, node):
entity = node.getEntity()
if not entity.isNull():
try:
self.loot_sum += int(entity.getKeyValue("inv_loot_value"))
except:
pass
return 1

class SelectionLootCounter(dr.SelectionVisitor):
loot_sum = 0
def visit(self, node):
entity = node.getEntity()
if not entity.isNull():
try:
self.loot_sum += int(entity.getKeyValue("inv_loot_value"))
except:
pass

scene_counter = SceneLootCounter()
GlobalSceneGraph.root().traverse(scene_counter)

selection_counter = SelectionLootCounter()
GlobalSelectionSystem.foreachSelected(selection_counter)

result = "Total loot: " + str(scene_counter.loot_sum)
if selection_counter.loot_sum > 0:
result += "\nSelection: " + str(selection_counter.loot_sum)

GlobalDialogManager.createMessageBox("Loot Count Results", result, dr.Dialog.CONFIRM).run()

if __executeCommand__:
execute()

0 comments on commit da7c6e0

Please sign in to comment.