DirectFB 之 实例图像不断右移

/**********************************************
 * Author: younger.liucn@gmail.com
 * File name: imgrotate.c
 * Description: animation
 * Modified:
 *   date:   2014-01-06  create
 *********************************************/
#include <directfb.h>

#include "animation.h"

#define MAX_LOOP        2
#define INTERVAL_PIXEL   2
#define EYE_HZ          50
#define INTERVAL_TIME   (1000 / EYE_HZ)

static int animation(int argc, char **argv);

int main(int argc, char **argv)
{
    return  animation(argc, argv);
}

static int animation(int argc, char **argv)
{
    int i, loop = 0;
    int screen_width = 0, screen_height = 0;
    DFBSurfaceDescription dsc;
    /*
     * For collecting infomation of image,
     * and provide image to IDirectFBSurface
     */
    IDirectFBImageProvider *provider;
    IDirectFB *dfb = NULL;
    IDirectFBSurface *primary = NULL;
    IDirectFBSurface *logo = NULL;

    /* 初始化整个DirectFB库,为后续画图等操作做准备 */
    DirectFBInit(&argc, &argv);
    DirectFBCreate(&dfb);
    
    /* 设置协作等级为全屏模式,具体请阅读SetCooperativeLevel接口解析 */
    dfb->SetCooperativeLevel(dfb, DFSCL_FULLSCREEN);
    dsc.flags = DSDESC_CAPS;
    dsc.caps = DSCAPS_PRIMARY | DSCAPS_FLIPPING;

    /* 根据dsc创建一个基本平面 */
    dfb->CreateSurface(dfb, &dsc, &primary);
    /* 获取该基本平面的宽度和高度 */
    primary->GetSize(primary, &screen_width, &screen_height);

    /* 将要显示的图片及其相关信息保存在provider中 */
    dfb->CreateImageProvider(dfb, BA_IMG_NAME, &provider);

    /* 将保存在provider中的图片信息提取出来,存于dsc中 */
    provider->GetSurfaceDescription(provider, &dsc);

    /* 根据dsc创建一个图像平面 */
    dfb->CreateSurface(dfb, &dsc, &logo);

    /* 将图片呈递给刚才建立的logo平面,如果大小不一,则进行缩放 */
    provider->RenderTo(provider, logo, NULL);

    /* 释放资源provider */
    provider->Release(provider);

    for (i = -dsc.width;
            i < screen_width && !ba_check_exit(shared_mem);
            i = i + INTERVAL_PIXEL) {
        /* 清空屏幕 */
        primary->FillRectangle(primary, 0, 0,
                    screen_width, screen_height);
        primary->Blit(primary, logo, NULL, i,
                    (screen_height - dsc.height) / 2);
        /*
         * Blit model:将图片blit到平面
         * Blit(IDirectFBSurface *thiz, IDirectFBSurface *source,
         *          const DFBRectangle *source_rect, int x, int y);
         * if source_rect == NULL,use entire surface.
         * DFBRctangle is rectangular frame defined by two points.
         * (x, y):the point of top left corner.
         */

        /* flit整个屏幕 */
        primary->Flip(primary, NULL, DSFLIP_WAITFORSYNC);

        msleep(INTERVAL_TIME);

        if ((screen_width - INTERVAL_PIXEL) <= i && loop < MAX_LOOP) {
            BA_LOG(1, "screen_width:%d, loop:%d.\n", screen_width, loop);
            loop++;
            i = -dsc.width;
        }

    }

    logo->Release(logo);
    primary->Release(primary);
    dfb->Release(dfb);
    return 0;
}

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

YoungerChina

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值