00001 /* 00002 * Marshmallow Duel DS v2 00003 * Copyright © 2007 Sam Pospischil http://pospi.spadgos.com 00004 * 00005 * This program is free software; you can redistribute it and/or modify 00006 * it under the terms of the GNU General Public License as published by 00007 * the Free Software Foundation; either version 2 of the License, or 00008 * (at your option) any later version. 00009 * 00010 * This program is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 * GNU General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License 00016 * along with this program; if not, write to the Free Software 00017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00018 */ 00019 00020 #include "wp_dunce.h" 00021 #include "player.h" 00022 #include "gameManager.h" 00023 00024 wp_dunce::~wp_dunce() 00025 { 00026 unEquipAction(); 00027 } 00028 00029 void wp_dunce::equipAction() 00030 { 00031 effect = new spriteObject(pawn->gm); 00032 effect->setPallete(pawn->gm->dunceHatSprite.palleteID); 00033 effect->giveGFX((pawn == pawn->gm->player1 ? pawn->gm->dunceGFX[0] : pawn->gm->dunceGFX[1]), OBJ_SIZE_32X32, 16, 16, 60, 0, 0); 00034 effect->setFrame(pawn->getFrame()); 00035 pawn->addChild(effect); 00036 pawn->setAttachment(effect); 00037 #ifdef __WITHSOUND 00038 pawn->playSound(&pawn->gm->duncePickup); 00039 #endif 00040 } 00041 00042 void wp_dunce::unEquipAction() 00043 { 00044 if (effect != NULL) 00045 { 00046 pawn->removeChild(/*effect*/); 00047 if (pawn->getAttachment() == effect) //this prevents an overwrite when we get 2 dunces in a row 00048 pawn->setAttachment(NULL); 00049 } 00050 }