cpp_photon/test/Image_test.cpp
2005-08-02 23:07:51 +00:00

84 lines
1.9 KiB
C++

//This file is part of Photon (http://photon.sourceforge.net)
//Copyright (C) 2004-2005 James Turk
//
// Author:
// James Turk (jpt2433@rit.edu)
//
// Version:
// $Id: Image_test.cpp,v 1.8 2005/08/02 23:07:53 cozman Exp $
#include "photon.hpp"
using namespace photon;
#include "FPSDisplayTask.hpp" // used to display FPS in title bar
class MainTask : public Task
{
public:
MainTask() :
Task("MainTask"),
app(Application::getAppCore()),
video(Application::getVideoCore())
{
video.setOrthoView(800,600);
// load the images
video::Image::addResource("data/icon.png");
video::Texture::addResource("robo","data/robo.png");
// load img[0], set to half translucency and resize
img[0].open("robo");
img[0].setAlpha(128);
img[0].resize(100,200);
// load img[1]
img[1].open("data/icon.png");
// copy img[0] into img[2] and flip it
img[2] = img[0];
img[2].flip(true,true);
}
void update()
{
// draw in top left corner
img[0].draw(0,0);
// rotate according to timer
img[1].drawRotated(200,200,app.getTime()*5);
// example usage of Images boolean operator
if(img[2])
{
img[2].draw(0,200);
}
}
private:
video::Image img[3];
AppCore& app;
video::VideoCore& video;
};
// standard application, creates window, registers task and runs
class ImageTest : public Application
{
public:
int main(const StrVec& args)
{
Application::getAppCore().createDisplay(800,600,32,0,0,false);
// be sure to add FPSDisplayTask
Application::getKernel().addTask(TaskPtr(new FPSDisplayTask()));
Application::getKernel().addTask(TaskPtr(new MainTask()));
Application::getKernel().run();
return 0;
}
};
ENTRYPOINT(ImageTest)