|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- /*
- * cpptest libcaca++ rendering test
- * Copyright (c) 2006 Jean-Yves Lamoureux <jylam@lnxscene.org>
- * All Rights Reserved
- *
- * $Id$
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the Do What The Fuck You Want To
- * Public License, Version 2, as published by Sam Hocevar. See
- * http://sam.zoy.org/wtfpl/COPYING for more details.
- */
-
- #include "config.h"
-
- #include <iostream>
-
- #include <cucul++.h>
- #include <caca++.h>
-
- using namespace std;
-
-
- static char const pigstring[] =
- " \n"
- " _ \n"
- " _._ _..._ .-', _.._(`)) \n"
- " '-. ` ' /-._.-' ',/ \n"
- " ) \\ '. \n"
- " / _ _ | \\ \n"
- " | a a / | \n"
- " \\ .-. ; \n"
- " '-('' ).-' ,' ; \n"
- " '-; | .' \n"
- " \\ \\ / \n"
- " | 7 .__ _.-\\ \\ \n"
- " | | | ``/ /` / \n"
- " jgs /,_| | /,_/ / \n"
- " /,_/ '`-' \n";
-
- int main(int argc, char *argv[])
- {
- Cucul *qq, *pig;
- Caca *kk;
- Event ev;
-
- int x = 0, y = 0, ix = 1, iy = 1;
-
- try {
- qq = new Cucul();
- }
- catch (int e) {
- cerr << "Error while initializing cucul (" << e << ")" << endl;
- return -1;
- }
-
- try {
- kk = new Caca(qq);
- }
- catch(int e) {
- cerr << "Error while attaching cucul to caca (" << e << ")" << endl;
- return -1;
- }
-
- try {
- // Import buffer into a canvas
- Buffer *buf = new Buffer();
- buf->loadMemory((void *)pigstring, strlen(pigstring));
- pig = new Cucul(buf, "text");
- delete buf;
- // Change colour to magenta
- pig->setColorANSI(CUCUL_LIGHTMAGENTA, CUCUL_TRANSPARENT);
- for(int y = 0; y < pig->getHeight(); y++)
- for(int x = 0; x < pig->getWidth(); x++)
- pig->putChar(x, y, pig->getChar(x, y));
- }
- catch(int e) {
- cerr << "Error while importing image (" << e << ")" << endl;
- return -1;
- }
-
- kk->setDisplayTime(20000);
-
- while(!kk->getEvent(ev.CACA_EVENT_KEY_PRESS, &ev, 0)) {
-
-
- /* In case of resize ...*/
- if((x + pig->getWidth())-1 >= qq->getWidth() || x < 0 )
- x = 0;
- if((y + pig->getHeight())-1 >= qq->getHeight() || y < 0 )
- y = 0;
-
-
-
-
- qq->Clear();
-
- /* Draw pig */
- qq->Blit(x, y, pig, NULL);
-
- /* printf works */
- qq->setColorANSI(CUCUL_LIGHTBLUE, CUCUL_BLACK);
- qq->Printf(qq->getWidth() / 2 - 10, qq->getHeight() / 2,
- "Powered by libcaca %s", VERSION);
-
- /* Blit */
- kk->Display();
-
- x += ix;
- y += iy;
-
- if(x + pig->getWidth() >= qq->getWidth() || x < 0 )
- ix = -ix;
- if(y + pig->getHeight() >= qq->getHeight() || y < 0 )
- iy = -iy;
-
- }
-
- delete kk;
- delete qq;
-
- return 0;
- }
|