Class: Card::Name
- Inherits:
-
Cardname
- Object
- Cardname
- Card::Name
- Includes:
- NameVariants
- Defined in:
- lib/card/name.rb,
lib/card/name/all.rb,
lib/card/name/all/parts.rb,
lib/card/name/card_class.rb,
lib/card/name/name_variants.rb,
lib/card/name/all/descendants.rb
Overview
The Cardname class provides generalized of Card naming patterns (compound names, key-based variants, etc) and can be used independently of Card objects.
Name adds support for deeper integration with Card objects
Defined Under Namespace
Modules: All, CardClass, NameVariants
Constant Summary collapse
- ID_MARK_RE =
/^~(?<id>\d+)$/
- CODENAME_MARK_RE =
/^:(?<codename>\w+)$/
Class Method Summary collapse
- .[](*cardish) ⇒ Card::Name
-
.compose(parts) ⇒ Object
interprets symbols/integers as codenames/ids.
-
.id_from_string(string) ⇒ Integer or nil
translates string identifiers into an id: - string id notation (eg “~75”) - string codename notation (eg “:options”).
- .id_from_string!(string) ⇒ Object
- .new(str, validated_parts = nil) ⇒ Object
- .params ⇒ Object
- .session ⇒ Object
Instance Method Summary collapse
Methods included from NameVariants
#alternative, #card, #card_id, #codename, #codename_or_string, #standard, #vary
Class Method Details
.[](*cardish) ⇒ Card::Name
20 21 22 23 |
# File 'lib/card/name.rb', line 20 def [] *cardish cardish = cardish.first if cardish.size <= 1 from_cardish(cardish) || unsupported_class!(cardish) end |
.compose(parts) ⇒ Object
interprets symbols/integers as codenames/ids
48 49 50 |
# File 'lib/card/name.rb', line 48 def compose parts new_from_parts(parts) { |part| self[part] } end |
.id_from_string(string) ⇒ Integer or nil
translates string identifiers into an id:
- string id notation (eg "~75")
- string codename notation (eg ":options")
58 59 60 61 62 63 |
# File 'lib/card/name.rb', line 58 def id_from_string string case string when ID_MARK_RE then Regexp.last_match[:id].to_i when CODENAME_MARK_RE then Card::Codename.id! Regexp.last_match[:codename] end end |
.id_from_string!(string) ⇒ Object
65 66 67 68 69 |
# File 'lib/card/name.rb', line 65 def id_from_string! string return unless (id = id_from_string string) Lexicon.name(id) ? id : bad_mark(string) end |
.new(str, validated_parts = nil) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/card/name.rb', line 33 def new str, validated_parts=nil return compose str if str.is_a?(Array) str = str.to_s if !validated_parts && str.include?(joint) new_from_compound_string str elsif (id = id_from_string str) # handles ~[id] and :[codename] from_id_from_string id, str else super str end end |
Instance Method Details
#rstar? ⇒ Boolean
119 120 121 |
# File 'lib/card/name.rb', line 119 def rstar? right && right[0, 1] == "*" end |
#star? ⇒ Boolean
115 116 117 |
# File 'lib/card/name.rb', line 115 def star? simple? && s[0, 1] == "*" end |