omegablast2002@yahoo.com
a59dec1500
added "once" support for the remaining triggers that did not have it.
...
this is basically one activation for the existence of the trigger, meaning if it is used on a card, and the trigger exist for inplay, it will only activate one time while that card is inplay, it will activate again if the card leaves play and is put back in play again by another effect,
this was originally added for cards such as the hidden enchantment cycle.
2011-07-05 14:14:18 +00:00
..
2010-11-16 00:55:16 +00:00
2011-06-02 07:01:42 +00:00
2011-07-03 08:47:51 +00:00
2011-05-29 04:40:13 +00:00
2011-05-04 10:02:47 +00:00
2011-05-29 04:40:13 +00:00
2011-06-02 06:14:28 +00:00
2011-07-03 08:47:51 +00:00
2011-04-28 05:01:06 +00:00
2011-07-04 19:09:19 +00:00
2010-11-16 00:55:16 +00:00
2011-06-02 17:11:10 +00:00
2011-05-09 18:10:10 +00:00
2011-07-04 19:09:19 +00:00
2010-11-16 00:55:16 +00:00
2010-11-16 00:55:16 +00:00
2011-05-08 11:56:25 +00:00
2011-06-02 06:14:28 +00:00
2011-05-29 04:40:13 +00:00
2010-12-01 08:22:17 +00:00
2010-11-16 00:55:16 +00:00
2011-01-31 14:21:46 +00:00
2011-04-21 06:35:44 +00:00
2011-04-21 08:32:32 +00:00
2011-06-03 20:01:50 +00:00
2011-05-28 05:00:40 +00:00
2011-07-05 13:02:41 +00:00
2011-07-04 19:09:19 +00:00
2009-06-15 01:01:57 +00:00
2011-04-24 10:33:38 +00:00
2011-06-15 09:52:11 +00:00
2010-11-16 00:55:16 +00:00
2011-05-23 11:46:04 +00:00
2011-07-03 08:47:51 +00:00
2011-05-06 06:40:00 +00:00
2011-06-04 16:22:45 +00:00
2011-06-15 09:52:11 +00:00
2011-07-05 13:02:41 +00:00
2011-07-05 13:02:41 +00:00
2011-06-04 16:22:45 +00:00
2011-07-03 08:47:51 +00:00
2011-01-11 10:11:15 +00:00
2011-04-20 07:50:00 +00:00
2011-07-04 19:09:19 +00:00
2011-04-21 22:48:22 +00:00
2010-10-24 05:55:24 +00:00
2011-05-29 04:40:13 +00:00
Resuming on my threading support work with the card caching mechanism. This change unfortunately touches quite a few files, but I needed to get it out of the way before things got out of hand: one significant hurdle is the assumed lifetime of a JQuad pointer. In a single threaded model, the life time of the pointer is clear: you fetch it into the cache, the cache makes room, you use the pointer immediately. In a multithreaded context however, it's unsafe, as the drawing thread can request a few JQuads, and the cache operating on a separate thread can potentially bounce a JQuad out of the cache before the draw routine is done using it, which ends up in an access violation when you attempt to draw using an invalidated quad pointer. To prevent this, the bulk of this change swaps out the use of naked JQuad* pointers in the code with a JQuadPtr, which is basically a typedef to a boost shared_ptr<JQuad>.
2011-02-01 10:37:21 +00:00
2011-04-21 22:48:22 +00:00
2011-05-29 04:40:13 +00:00
2011-05-07 12:43:00 +00:00
2010-11-16 00:55:16 +00:00
Resuming on my threading support work with the card caching mechanism. This change unfortunately touches quite a few files, but I needed to get it out of the way before things got out of hand: one significant hurdle is the assumed lifetime of a JQuad pointer. In a single threaded model, the life time of the pointer is clear: you fetch it into the cache, the cache makes room, you use the pointer immediately. In a multithreaded context however, it's unsafe, as the drawing thread can request a few JQuads, and the cache operating on a separate thread can potentially bounce a JQuad out of the cache before the draw routine is done using it, which ends up in an access violation when you attempt to draw using an invalidated quad pointer. To prevent this, the bulk of this change swaps out the use of naked JQuad* pointers in the code with a JQuadPtr, which is basically a typedef to a boost shared_ptr<JQuad>.
2011-02-01 10:37:21 +00:00
2011-05-08 11:56:25 +00:00
2011-07-04 19:09:19 +00:00
2011-07-03 08:47:51 +00:00
2011-05-13 03:40:38 +00:00
2011-02-09 20:42:19 +00:00
2011-04-29 17:30:57 +00:00
2011-06-02 06:14:28 +00:00
2011-07-05 14:14:18 +00:00
2010-11-16 00:55:16 +00:00
2011-04-23 09:54:19 +00:00
2011-05-15 14:38:41 +00:00
2011-05-13 03:40:38 +00:00
2011-03-31 16:39:28 +00:00
2011-01-28 06:00:51 +00:00
2011-06-02 07:01:42 +00:00
2011-05-05 05:51:50 +00:00
2011-05-29 04:40:13 +00:00
2010-11-16 00:55:16 +00:00
2010-11-16 00:55:16 +00:00
2011-03-13 21:19:02 +00:00
2011-04-24 10:33:38 +00:00
2011-02-06 11:35:40 +00:00
2011-05-07 04:48:56 +00:00
2011-05-23 11:46:04 +00:00
2011-04-20 07:50:00 +00:00
2011-06-02 05:33:45 +00:00
2011-05-29 04:40:13 +00:00
2011-03-02 13:41:24 +00:00
2011-04-29 17:30:57 +00:00
2011-01-08 12:24:39 +00:00
2011-04-20 07:50:00 +00:00
2010-11-16 00:55:16 +00:00
2011-07-03 08:47:51 +00:00
2011-06-22 05:06:54 +00:00
2011-06-04 16:22:45 +00:00
2010-12-01 08:22:17 +00:00
Resuming on my threading support work with the card caching mechanism. This change unfortunately touches quite a few files, but I needed to get it out of the way before things got out of hand: one significant hurdle is the assumed lifetime of a JQuad pointer. In a single threaded model, the life time of the pointer is clear: you fetch it into the cache, the cache makes room, you use the pointer immediately. In a multithreaded context however, it's unsafe, as the drawing thread can request a few JQuads, and the cache operating on a separate thread can potentially bounce a JQuad out of the cache before the draw routine is done using it, which ends up in an access violation when you attempt to draw using an invalidated quad pointer. To prevent this, the bulk of this change swaps out the use of naked JQuad* pointers in the code with a JQuadPtr, which is basically a typedef to a boost shared_ptr<JQuad>.
2011-02-01 10:37:21 +00:00
2011-04-23 13:24:19 +00:00
2011-02-06 11:35:40 +00:00
2011-05-16 23:19:08 +00:00
2011-05-26 12:27:44 +00:00
2011-05-26 12:27:44 +00:00
2011-07-03 08:47:51 +00:00
2010-11-16 00:55:16 +00:00
2011-05-07 04:10:47 +00:00
2011-01-08 12:24:39 +00:00
2011-04-14 17:06:44 +00:00
2011-01-21 20:18:56 +00:00
2011-04-21 02:35:51 +00:00
2011-05-26 21:24:17 +00:00
2010-11-16 00:55:16 +00:00
2011-07-03 08:47:51 +00:00
2011-04-21 13:16:11 +00:00
2011-04-19 07:12:05 +00:00
2011-04-29 13:24:02 +00:00
2011-05-15 18:41:40 +00:00
2011-04-21 13:16:11 +00:00
2011-06-04 16:22:45 +00:00
2011-05-05 14:27:46 +00:00