It is currently 16 Apr 2024, 21:00
   
Text Size

Card Development Questions

Post MTG Forge Related Programming Questions Here

Moderators: timmermac, Blacksmith, KrazyTheFox, Agetian, friarsol, CCGHQ Admins

Re: Card Development Questions

Postby Hanmac » 04 Feb 2014, 20:30

i want to test
Marath, Will of the Wild with
Animar, Soul of Elements and
Chorus of the Conclave

in the current forge snapshots Animar does not work with Chorus and Marath does not exist as card yet
Hanmac
 
Posts: 954
Joined: 06 May 2013, 18:44
Has thanked: 229 times
Been thanked: 158 times

Re: Card Development Questions

Postby Max mtg » 05 Feb 2014, 08:18

I've merged the two implementations of ChangeZone effect, the part for hidden origin.
There remains an only "if(isHuman)" on card choice (this is to be solved soon as well - the problem is that I have to pass origin and dest zones to choose card method for AI)

Since the rest of logic is now shared, please test if it works as intended.
Single class for single responsibility.
Max mtg
Programmer
 
Posts: 1997
Joined: 02 Jul 2011, 14:26
Has thanked: 173 times
Been thanked: 334 times

Re: Card Development Questions

Postby Agetian » 08 Feb 2014, 04:52

@ Max: Maybe this report is related to the change from isHuman to the new logic implementation, please take a look:
viewtopic.php?f=52&t=6333&start=2745#p145217

- Agetian
Agetian
Programmer
 
Posts: 3471
Joined: 14 Mar 2011, 05:58
Has thanked: 676 times
Been thanked: 561 times

Re: Card Development Questions

Postby Agetian » 16 Feb 2014, 13:16

I got curious about the possibilities of implementation of Soul Burn since, on the one hand, it's pretty close to Drain Life but, on the other hand, has one awkward bit to it that requires some thought and new design decisions ("...no more than the amount of B spent"). What do you think would be the best way to implement this card design-wise? We can already limit the mana spent on X to two colors (B and R), but we can't count each color individually as the player pays the X part of the mana cost, it doesn't seem to be currently possible to query which mana ability was activated in order to pay for each particular component of X. Does anyone know what would be a sane approach to implementing this shard-based count? I have some crazy ideas in my mind but they seem pretty suboptimal and have some deep-going consequences for the related code base that is likely to break things. Are there any script-side shortcuts and tricks that are possible here? What would the "ideal" script for Soul Burn look like? If anyone can come up with a mockup and give me a few pointers about what a good enough strategy for updating the code might be here, I might look into adding the relevant code to support this card (seems like it was a part of quite a few tournament decks in its time and was featured in some staple decks such as Erik Lauer's work, I think it might be worth adding this card to the list of supported ones with time).

- Agetian
Agetian
Programmer
 
Posts: 3471
Joined: 14 Mar 2011, 05:58
Has thanked: 676 times
Been thanked: 561 times

Re: Card Development Questions

Postby friarsol » 16 Feb 2014, 14:36

I don't think the script to Soul Burn is all that interesting. It's really not going to be different than Drain Life, except for the "how much life do I gain part"

Soul Burn | Open
# This part targets, and sets the "Limit" SVar to the Toughness of the Creature or the Life of the Player as appropriate
A:SP$ StoreSVar | Cost$ X 2 B | XColor$ BR | ValidTgts$ Creature,Player | TgtPrompt$ Select target creature or player | SVar$ Limit | Type$ Targeted | Expression$ CardToughness | SubAbility$ StoreTgtP | ConditionDefined$ Targeted | ConditionPresent$ Card.Creature | ConditionCompare$ GE1
SVar:StoreTgtP:DB$ StoreSVar | SVar$ Limit | Type$ Count | Expression$ TargetedLifeTotal | SubAbility$ DBDamage | ConditionDefined$ Targeted | ConditionPresent$ Card.Creature | ConditionCompare$ EQ0
# Simple Damage
SVar:DBDamage:DB$ DealDamage | Defined$ Targeted | NumDmg$ X | SubAbility$ DBGainLife | References$ X
SVar:X:Count$xPaid


SVar:DBGainLife:DB$ GainLife | Defined$ You | LifeAmount$ DrainedLifeCard | References$ DrainedLifeCard

SVar:DrainedLifeCard:SVar$BlackManaPaid/LimitMax.Limit
# Limit gets overwritten by the SVars above to Life or Toughness
SVar:Limit:Count$xPaid
SVar:BlackManaPaid:Count$xColorPaid B


The basic idea is the same as DrainLife, when the spell first starts resolving it sets the Base value of the Player's life or the Creature's toughness. Then it deals damage equal to the total value of X. Then the following math formula is being calculated:

LifeGain = Math.min(B paid for X, Toughness/Life of Target)

x values would need to track which mana shards were used to pay for them, which may be complex in a future Forge where all X values are announced.
friarsol
Global Moderator
 
Posts: 7593
Joined: 15 May 2010, 04:20
Has thanked: 243 times
Been thanked: 965 times

Re: Card Development Questions

Postby Agetian » 16 Feb 2014, 14:53

Thanks for the information, Sol! Now, the important part is actually implementing a way to count different shards used to pay for X.

As such, a question for someone familiar with the relevant part of the code (so that I don't duplicate anything or do the wrong thing here...): with the current code base, is it possible to retrieve the exact shard that was used to pay for the component of X by accessing something in SpellAbility or the ManaAbility of a card the mana ability of which was activated during the payment of X?

- Agetian
Agetian
Programmer
 
Posts: 3471
Joined: 14 Mar 2011, 05:58
Has thanked: 676 times
Been thanked: 561 times

Re: Card Development Questions

Postby Max mtg » 16 Feb 2014, 23:22

Agetian wrote:Thanks for the information, Sol! Now, the important part is actually implementing a way to count different shards used to pay for X.
That won't be shards (parts of manacost), but multiple mana... motes(?) - those things floating in your mana pool.


I've made some changes in 24862-63 - now you can access Mana items used to pay spells (but not just any ability) from forge.game.spellability.SpellAbility.getManaPaid() method

PS: There's also a chance I've broken everything and planted a dozen of bugs... well, as I usually do =)
Single class for single responsibility.
Max mtg
Programmer
 
Posts: 1997
Joined: 02 Jul 2011, 14:26
Has thanked: 173 times
Been thanked: 334 times

Re: Card Development Questions

Postby swordshine » 17 Feb 2014, 01:37

Just out of curiosity, is there possiblity to track MultiKicker (or Replicate) mana spent when casting a spell? If possible, "Total Mana Spent" cards can be scripted.
swordshine
 
Posts: 682
Joined: 11 Jul 2010, 02:37
Has thanked: 116 times
Been thanked: 87 times

Re: Card Development Questions

Postby Agetian » 17 Feb 2014, 04:26

Max mtg wrote:
Agetian wrote:Thanks for the information, Sol! Now, the important part is actually implementing a way to count different shards used to pay for X.
That won't be shards (parts of manacost), but multiple mana... motes(?) - those things floating in your mana pool.


I've made some changes in 24862-63 - now you can access Mana items used to pay spells (but not just any ability) from forge.game.spellability.SpellAbility.getManaPaid() method

PS: There's also a chance I've broken everything and planted a dozen of bugs... well, as I usually do =)
Thanks for the implementation, Max, will use this to work on getting things going for Soul Burn soon! :)

- Agetian
Agetian
Programmer
 
Posts: 3471
Joined: 14 Mar 2011, 05:58
Has thanked: 676 times
Been thanked: 561 times

Re: Card Development Questions

Postby Max mtg » 17 Feb 2014, 09:04

swordshine wrote:Just out of curiosity, is there possiblity to track MultiKicker (or Replicate) mana spent when casting a spell? If possible, "Total Mana Spent" cards can be scripted.
Any mana paid through forge.game.mana.ManaPool.tryPayCostWithMana(SpellAbility, ManaCostBeingPaid, Mana) is accumulated into that list.
Mana paid for Replicate and multikicker, as I remember, does flow through that route.
Single class for single responsibility.
Max mtg
Programmer
 
Posts: 1997
Joined: 02 Jul 2011, 14:26
Has thanked: 173 times
Been thanked: 334 times

Re: Card Development Questions

Postby swordshine » 17 Feb 2014, 15:00

Max mtg wrote:
swordshine wrote:Just out of curiosity, is there possiblity to track MultiKicker (or Replicate) mana spent when casting a spell? If possible, "Total Mana Spent" cards can be scripted.
Any mana paid through forge.game.mana.ManaPool.tryPayCostWithMana(SpellAbility, ManaCostBeingPaid, Mana) is accumulated into that list.
Mana paid for Replicate and multikicker, as I remember, does flow through that route.
I was trying to script Jeweled Amulet and found a bug. forge.game.spellability.SpellAbility.getManaPaid() adds existing floating manas in the mana pool.
1) Tap a Plains to add W to your mana pool.
2) Tap a Forest to activate an ability (Cost 1). forge.game.spellability.SpellAbility.getManaPaid() returns W G.
swordshine
 
Posts: 682
Joined: 11 Jul 2010, 02:37
Has thanked: 116 times
Been thanked: 87 times

Re: Card Development Questions

Postby Max mtg » 17 Feb 2014, 19:37

That's the weird autoplay, that attempts to pay mana with the same instances as used for real payment,
I always told this autopay feature should not be there.
Single class for single responsibility.
Max mtg
Programmer
 
Posts: 1997
Joined: 02 Jul 2011, 14:26
Has thanked: 173 times
Been thanked: 334 times

Re: Card Development Questions

Postby drdev » 17 Feb 2014, 19:59

Max mtg wrote:That's the weird autoplay, that attempts to pay mana with the same instances as used for real payment,
I always told this autopay feature should not be there.
If auto-payment is broken, then so is AI mana payment, since they use the exact same logic. Instead of contemplating removing the Auto button, can we just fix the AI logic?

You may not find the Auto button useful, but I know for a fact that many do. It's also a nice way to test the AI logic.
drdev
Programmer
 
Posts: 1958
Joined: 27 Jul 2013, 02:07
Has thanked: 189 times
Been thanked: 565 times

Re: Card Development Questions

Postby Max mtg » 17 Feb 2014, 21:45

drdev wrote:
Max mtg wrote:That's the weird autoplay, that attempts to pay mana with the same instances as used for real payment,
I always told this autopay feature should not be there.
If auto-payment is broken, then so is AI mana payment, since they use the exact same logic. Instead of contemplating removing the Auto button, can we just fix the AI logic?

You may not find the Auto button useful, but I know for a fact that many do. It's also a nice way to test the AI logic.
AI mana payment is not broken, not when it has no spare mana in pool. Just put a breakpoint at ManaPool.java, line 332 and see when it gets hit:
1. AI is paying for an ability (ai does not reach this place when it choses which spells it can afford)
2. Human pays for a spell or ability.
3. "Autoplay" feature checks if it can pay for the spell with mana form pool.

Without autoplay it would work properly.

Probably, some people might like autopay, but it's poorly implemented and stands on the way of adding new cards.
I remember your words that code should not stand on the way of new features. Let's apply this principle here!
Single class for single responsibility.
Max mtg
Programmer
 
Posts: 1997
Joined: 02 Jul 2011, 14:26
Has thanked: 173 times
Been thanked: 334 times

Re: Card Development Questions

Postby Max mtg » 17 Feb 2014, 22:06

UPD: Oh, great! I found a way to remove some ai-specific code form game.
Wait here.

Yes, I know! that AI tests were not intended to check partially paid abilities.
Single class for single responsibility.
Max mtg
Programmer
 
Posts: 1997
Joined: 02 Jul 2011, 14:26
Has thanked: 173 times
Been thanked: 334 times

PreviousNext

Return to Developer's Corner

Who is online

Users browsing this forum: No registered users and 43 guests

cron

Who is online

In total there are 43 users online :: 0 registered, 0 hidden and 43 guests (based on users active over the past 10 minutes)
Most users ever online was 4143 on 23 Jan 2024, 08:21

Users browsing this forum: No registered users and 43 guests

Login Form