Module: Yuki::EXC
- Defined in:
- docs/000_a_root.rb
Overview
Module that allows the game to write and Error.log file if the Exception is not a SystemExit or a Reset
Creation date : 2013, update : 26/09/2017
Constant Summary collapse
- Software =
Name of the current Game/Software
'PSDK'
Class Method Summary collapse
-
.build_error_log(e) ⇒ String
Method that build the error log.
-
.build_system_stack_error_log(e, str)
Build the SystemStackError message.
-
.dot_25_battle_reproduction(scene)
Function building the reproduction file.
-
.fix_source_path(source_name) ⇒ String
Function that corrects the source path.
-
.get_eval_script ⇒ String?
Get the eval script used by the current eval command.
-
.mining_game_reproduction(grid_handler)
Function building the reproduction file for the Mining Game.
-
.run(e, io = nil)
Method that runs #build_error_log if the Exception is not a SystemExit or a Reset.
-
.set_eval_script(script)
Sets the script used by the eval command.
-
.show_error_window(log)
Function that shows the error window.
Class Method Details
.build_error_log(e) ⇒ String
Method that build the error log.
444 445 |
# File 'docs/000_a_root.rb', line 444 def build_error_log(e) end |
.build_system_stack_error_log(e, str)
Build the SystemStackError message
462 463 |
# File 'docs/000_a_root.rb', line 462 def build_system_stack_error_log(e, str) end |
.dot_25_battle_reproduction(scene)
Function building the reproduction file
466 467 |
# File 'docs/000_a_root.rb', line 466 def dot_25_battle_reproduction(scene) end |
.fix_source_path(source_name) ⇒ String
Function that corrects the source path
449 450 |
# File 'docs/000_a_root.rb', line 449 def fix_source_path(source_name) end |
.get_eval_script ⇒ String?
Get the eval script used by the current eval command
457 458 |
# File 'docs/000_a_root.rb', line 457 def get_eval_script end |
.mining_game_reproduction(grid_handler)
Function building the reproduction file for the Mining Game
470 471 |
# File 'docs/000_a_root.rb', line 470 def mining_game_reproduction(grid_handler) end |
.run(e) .run(e, io)
Method that runs #build_error_log if the Exception is not a SystemExit or a Reset.
439 440 |
# File 'docs/000_a_root.rb', line 439 def run(e, io = nil) end |
.set_eval_script(script)
Sets the script used by the eval command
453 454 |
# File 'docs/000_a_root.rb', line 453 def set_eval_script(script) end |
.show_error_window(log)
Function that shows the error window
474 475 |
# File 'docs/000_a_root.rb', line 474 def show_error_window(log) end |