X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fbakapee.h;h=c270b1fdbea1d16e336aa1b632992030fcf551ee;hb=6021fc3f27b895d382fbd30488ead35657e39196;hp=18ba2c8aed3873f59c28a718b67a3ee05f342eeb;hpb=f1605e99959acfb32b36ae875601fc14dd670742;p=16.git diff --git a/src/lib/bakapee.h b/src/lib/bakapee.h index 18ba2c8a..c270b1fd 100755 --- a/src/lib/bakapee.h +++ b/src/lib/bakapee.h @@ -1,56 +1,64 @@ -/* Project 16 Source Code~ - * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669 - * - * This file is part of Project 16. - * - * Project 16 is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. - * - * Project 16 is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see , or - * write to the Free Software Foundation, Inc., 51 Franklin Street, - * Fifth Floor, Boston, MA 02110-1301 USA. - * - */ - -#ifndef __BAKAPEE_H_ -#define __BAKAPEE_H_ - -#include "src/lib/16_head.h" -#include "src/lib/modex16.h" - -#define TILEWH 16 -#define QUADWH TILEWH/2 -#define BONK 400 -#define LGQ 32 -#define HGQ 55 - -//#define TILE - +/* Project 16 Source Code~ + * Copyright (C) 2012-2018 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover + * + * This file is part of Project 16. + * + * Project 16 is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * Project 16 is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see , or + * write to the Free Software Foundation, Inc., 51 Franklin Street, + * Fifth Floor, Boston, MA 02110-1301 USA. + * + */ + +#ifndef __BAKAPEE_H_ +#define __BAKAPEE_H_ + +#include "src/lib/16_head.h" +#include "src/lib/16_vl.h" +#include +#include +#include + +#define TILEWH 16 +#define QUADWH TILEWH/2 + typedef struct { - word gq; + word gq; sword bakax, bakay; sword xx, yy, sx, sy; - byte coor; -} bakapee_t; - -void pdump(page_t *pee); -void cls(page_t *page, byte color, byte *Where); -void colortest(page_t *page, bakapee_t *pee); -void colorz(page_t *page, bakapee_t *pee); -void ssd(page_t *page, bakapee_t *pee, word svq); -void dingpp(page_t *page, bakapee_t *pee); -void dingo(bakapee_t *pee); -void dingas(bakapee_t *pee); -void dingu(bakapee_t *pee); -void dingq(bakapee_t *pee); -void ding(page_t *page, bakapee_t *pee, word q); - -#endif /*__BAKAPEE_H_*/ + byte coor; + boolean tile; + word bonk,lgq,hgq; +} bakapee_t; + +#define BAKAFIZZUNSIGNED +#ifdef BAKAFIZZUNSIGNED +boolean baka_FizzleFade (unsigned source, unsigned dest, unsigned width, unsigned height, unsigned frames, boolean abortable, global_game_variables_t *gvar); +#else +boolean baka_FizzleFade (page_t *sourcepage, page_t *destpage, unsigned width, unsigned height, unsigned frames, boolean abortable, global_game_variables_t *gvar); +#endif +void clrstdin(); +void TL_DosLibStartup(global_game_variables_t *gvar); +void colortest(page_t *page, bakapee_t *pee); +void colorz(page_t *page, bakapee_t *pee); +void ssd(page_t *page, bakapee_t *pee, word svq); +void dingpp(page_t *page, bakapee_t *pee); +void dingo(page_t *page, bakapee_t *pee); +void dingas(bakapee_t *pee); +void dingaso(bakapee_t *pee); +void dingu(bakapee_t *pee); +void dingq(bakapee_t *pee); +void dingqo(bakapee_t *pee); +void ding(page_t *page, bakapee_t *pee, word q); + +#endif /*__BAKAPEE_H_*/