Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NightWizardにプラーナ補正を実装 #255

Merged
merged 2 commits into from
Aug 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 24 additions & 9 deletions src/diceBot/NightWizard.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,15 @@ class NightWizard < DiceBot

# ダイスボットの使い方
HELP_MESSAGE = <<INFO_MESSAGE_TEXT
・判定用コマンド (nNW+m@x#y)
 "(基本値)NW(常時および常時に準じる特技等及び状態異常(省略可))@(クリティカル値)#(ファンブル値)(常時以外の特技等及び味方の支援効果等の影響(省略可))"でロールします。
 Rコマンド(2R6m[n,m]c[x]f[y]>=t tは目標値)に読替されます。
・判定用コマンド (aNW+b@x#y$z+c)
  a : 基本値
  b : 常時に準じる特技による補正
  c : 常時以外の特技、および支援効果による補正(ファンブル時には適用されない)
  x : クリティカル値のカンマ区切り(省略時 10)
  y : ファンブル値のカンマ区切り(省略時 5)
  z : プラーナによる達成値補正のプラーナ消費数(ファンブル時には適用されない)
 クリティカル値、ファンブル値が無い場合は1や13などのあり得ない数値を入れてください。
 例)12NW-5@7#2  1NW  50nw+5@7,10#2,5 50nw-5+10@7,10#2,5+15+25
 例)12NW-5@7#2$3 1NW 50nw+5@7,10#2,5 50nw-5+10@7,10#2,5+15+25
INFO_MESSAGE_TEXT

setPrefixes(['([-+]?\d+)?NW.*', '2R6.*'])
Expand Down Expand Up @@ -64,6 +68,9 @@ class Parsed
# @return [Array<Integer>] ファンブルになる出目の一覧
attr_accessor :fumble_numbers

# @return [Integer, nil] プラーナによる補正
attr_accessor :prana

# @return [Integer] ファンブルでない時に適用される修正値
attr_accessor :active_modify_number

Expand Down Expand Up @@ -97,8 +104,9 @@ def to_s
base = @base.zero? ? nil : @base
modify_number = Format.modifier(@modify_number)
active_modify_number = Format.modifier(@active_modify_number)
dollar = @prana && "$#{@prana}"

return "#{base}#{@command}#{modify_number}@#{@critical_numbers.join(',')}##{@fumble_numbers.join(',')}#{active_modify_number}#{@cmp_op}#{@target_number}"
return "#{base}#{@command}#{modify_number}@#{@critical_numbers.join(',')}##{@fumble_numbers.join(',')}#{dollar}#{active_modify_number}#{@cmp_op}#{@target_number}"
end
end

Expand All @@ -114,7 +122,7 @@ def to_s

# @return [ParsedNW, nil]
def parse_nw(string)
m = /^([-+]?\d+)?#{@nw_command}((?:[-+]\d+)+)?(?:@(\d+(?:,\d+)*))?(?:#(\d+(?:,\d+)*))?((?:[-+]\d+)+)?(?:([>=]+)(\d+))?$/.match(string)
m = /^([-+]?\d+)?#{@nw_command}((?:[-+]\d+)+)?(?:@(\d+(?:,\d+)*))?(?:#(\d+(?:,\d+)*))?(?:\$(\d+(?:,\d+)*))?((?:[-+]\d+)+)?(?:([>=]+)(\d+))?$/.match(string)
unless m
return nil
end
Expand All @@ -126,9 +134,10 @@ def parse_nw(string)
command.modify_number = m[2] ? ae.eval(m[2]) : 0
command.critical_numbers = m[3] ? m[3].split(',').map(&:to_i) : [10]
command.fumble_numbers = m[4] ? m[4].split(',').map(&:to_i) : [5]
command.active_modify_number = m[5] ? ae.eval(m[5]) : 0
command.cmp_op = Normalize.comparison_operator(m[6])
command.target_number = m[7] && m[7].to_i
command.prana = m[5] && m[5].to_i
command.active_modify_number = m[6] ? ae.eval(m[6]) : 0
command.cmp_op = Normalize.comparison_operator(m[7])
command.target_number = m[8] && m[8].to_i

return command
end
Expand Down Expand Up @@ -166,6 +175,12 @@ def roll_nw(parsed)
status = roll_once()
end

if status != :fumble && parsed.prana
prana_bonus, prana_list = roll(parsed.prana, 6)
@total += prana_bonus
@interim_expr += "+#{prana_bonus}[#{prana_list}]"
end

base =
if status == :fumble
fumble_base_number(parsed)
Expand Down
18 changes: 18 additions & 0 deletions src/test/data/NightWizard.txt
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,24 @@ NightWizard : (50NW+5@7,10#2,5>=66) > 55+11[5,6] > 66 > 成功
rand:5/6,6/6
============================
input:
12NW-5@7#2$3 プラーナ補正 通常時
output:
NightWizard : (12NW-5@7#2$3) > 7+6[5,1]+6[1,2,3] > 19
rand:5/6,1/6,1/6,2/6,3/6
============================
input:
12NW-5@7#2$3 プラーナ補正 ファンブル時
output:
NightWizard : (12NW-5@7#2$3) > 7-10[1,1] > ファンブル > -3
rand:1/6,1/6
============================
input:
12NW-5@7#2$3 プラーナ補正 クリティカル時
output:
NightWizard : (12NW-5@7#2$3) > 7+10[5,2]+10[5,5]+6[1,2,3] > クリティカル > 33
rand:5/6,2/6,5/6,5/6,1/6,2/6,3/6
============================
input:
2R6M[12-5]C[7]F[2]
output:
NightWizard : (2R6M[7,0]C[7]F[2]) > 7-10[1,1] > ファンブル > -3
Expand Down