1.directdraw淡入淡出效果
directdraw淡入淡出效果
给你贴一篇类似的函函数吧
用VC实现图象渐显和渐隐
摘 要 图象的渐显/渐隐被广泛运用与图象处理和多媒提娱乐软件。本文基于windows的数源调色板动画和时间码技术设计了通用的图象渐显和渐隐算法,并实现了其visual c++程序编码。源码
图象的函函数渐显/渐隐是十分重要的图象效果,广泛运用于图象处理和多媒提娱乐软件。数源渐显/渐隐算法设计的源码freertos开源码最大困难是速度控制,包括定时和快速改变图象中各象素的函函数颜色。如采用普通的数源全图扫描算法,则速度较慢,源码很难真正体现渐显/渐隐效果。函函数
利用windows(3.x.//nt)操作系统特殊的数源调色板管理和时间码定时机制能设计出有效的图象渐显/渐隐算法。windows提供一种被称为调色板动画(palette animation)的源码颜色处理技术,它通过快速改变颜色调色板中所选取的函函数表项中的颜色能模拟颜色的变化。设置时间码,数源定时调用该技术使图象颜色渐变就能实现图象的源码渐显和渐隐。
一、调色板动画
在visual c++中实现调色板动画依赖于mfc类库提供的cpalette类和cdc类中的若干成员函数,其基本步骤如下:
调用cpalette::createpalette(lplogpalette lplogpalette)函数创建逻辑调色板,注意将参数lplogpalette所指向的派派水印源码各颜色表项结构的peflags域设置为pc_reserved,以防止其它窗口同该调色板匹配颜色。;
调用cdc::selectpalette和cdc::realizepalette函数选择和实现所创建的逻辑调色板;
调用cpalette::animatepalette函数改变颜色,实现调色板动画;
动画完成后应恢复系统调色板。
cpalette::animatepalette是其中最关键的函数,其原型如下:
void animatepalette(
uint nstartindex, // 起始的表项号
uint nnumentries, // 变化的表项数
lppaletteentry lppalettecolors ); // 逻辑调色板表项指针
lppalettecolors为指向paletteentry结构的指针,其中存储着逻辑调色板将要更新的颜色信息。paletteentry结构定义如下: typedef struct tagpaletteentry { // pe
byte pered;
byte pegreen;
byte peblue;
byte peflags;
} paletteentry;
pered、pegreen、peblue分别表示逻辑调色板项的沈阳到青岛源码r、g、b颜色分量值。peflags 应被置为pc_reserved 。
nstartindex为lppalettecolors中将变化的起始表项号,nnumentries 为lppalettecolors中将变化的表项数。
二、时间码定时
cwnd::settimer函数可设置一个系统时间码,并指定每经过一定的时间间隔使windows系统发送一个wm_timer消息到窗口的消息队列中。窗口在每当接收到相应的成都源码时代现状wm_timer消息时做一定的处理,便实现了定时处理。
通常应在窗口的消息循环中接受和处理wm_timer消息,这样将很难编制通用的定时操作。通用的定时操作应将定时处理封装在一个函数中,而不与其它的代码纠缠在一起。笔者实现这一技术的技巧是,在循环操作中截获窗口消息,如消息为指定的时间码消息,则进行定时处理;否则分发消息给窗口消息处理机制。人人还款源码如果定时操作已结束,则修改循环标志,退出循环。具体的代码如下:
………………………………
// 设置时间码,pwnd为处理定时操作的窗口对象指针
pwnd->settimer(0x, utimeout, null);
// 屏蔽鼠标操作,使定时操作不受影响
pwnd->setcapture();
// 开始定时操作
bool bdone = false;
msg msg;
while (! bdone)
{
if (::peekmessage(&msg, null, 0, 0, pm_remove))
{
if (msg.message == wm_timer && msg. wparam == 0x)
{
…………………..
定时操作代码
…………………..
// 如定时操作完成,则设置循环标志,结束操作
if (定时操作完成)
bdone = true;
}
::translatemessage(&msg);
::dispatchmessage(&msg);
}
}
// 释放鼠标
::releasecapture();
// 删除时间码
pwnd->killtimer(0x);
…………………………..
函数peekmessage截获窗口消息,translatemessage和dispatchmessage函数解释和分发除指定时间码消息之外的所有消息,以避免丢失消息。
三、渐显
渐显就是将显示颜色由黑色(rgb(0, 0, 0))逐渐变化为图象各象素的颜色的过程。开始时调用cpalette::getpaletteentries函数保存图象调色板的各逻辑表项信息,然后调用cpalette::setpaletteentries函数将逻辑调色板中各逻辑表项的pered、pegreen、peblue置为0,定时调用cpalette::animatepalette,每次将各逻辑表项的pered、pegreen、peblue值增加一个变化量,直到它们分别等于图象逻辑调色板中各逻辑表项的pered、pegreen、peblue值。
下面的函数fadein通过对调色板颜色表项中的各颜色分量值先设为0,然后进行递增,直到所有颜色值都恢复成原调色板中颜色值来实现渐显。
// 图象渐显效果
// 参数:
// pwnd – 显示图象的窗口
// ppal – 调色板指针
// ndeta – 各颜色分量的减小量
// utimeout – 时间的变化量
void fadein(cwnd *pwnd, cpalette *ppal, int ndeta, uint utimeout)
{
// 保留原来的调色板颜色表项
int ntotalcolors = ppal->getentrycount();
paletteentry palettecolors0[];
ppal->getpaletteentries(0, ntotalcolors, palettecolors0);
// 先将调色板表项中各颜色分量置为0
paletteentry palettecolors1[];
for (int i=0; i<ntotalcolors; ++i)
{
palettecolors1[i].pered = 0;
palettecolors1[i].pegreen = 0;
palettecolors1[i].peblue = 0;
palettecolors1[i].peflags = pc_reserved;
}
ppal->setpaletteentries(0, ntotalcolors, palettecolors1);
ppal->animatepalette(0, ntotalcolors, palettecolors1);
// 设置时间码
pwnd->settimer(0x, utimeout, null);
// 开始渐显
pwnd->setcapture();
bool bdone = false;
msg msg;
while (! bdone)
{
if (::peekmessage(&msg, null, 0, 0, pm_remove))
{
if (msg.message == wm_timer && msg.wparam == 0x)
{
cclientdc dc(pwnd);
cpalette *poldpal = dc.selectpalette(ppal, false);
dc.realizepalette();
// 递增各颜色分量
paletteentry palettecolors[];
ppal->getpaletteentries(0, ntotalcolors, palettecolors);
bool bredzero=false;
bool bgreenzero=false;
bool bbluezero=false;
for (int i=0; i<ntotalcolors; ++i)
{
if (palettecolors[i].pered + ndeta <
palettecolors0[i].pered)
{
palettecolors[i].pered += ndeta;
bredzero = false;
}
else if (palettecolors[i].pered + 1 <
palettecolors0[i].pered)
{
palettecolors[i].pered++;
bredzero = false;
}
else
bredzero = true;
if (palettecolors[i].pegreen + ndeta <
palettecolors0[i].pegreen)
{
palettecolors[i].pegreen += ndeta;
bgreenzero = false;
}
else if (palettecolors[i].pegreen + 1 <
palettecolors0[i].pegreen)
{
palettecolors[i].pegreen++;
bgreenzero = false;
}
else
bgreenzero = true;
if (palettecolors[i].peblue + ndeta <
palettecolors0[i].peblue)
{
palettecolors[i].peblue += ndeta;
bbluezero = false;
}
else if (palettecolors[i].peblue +1 <
palettecolors0[i].peblue)
{
palettecolors[i].peblue++;
bbluezero = false;
}
else
bbluezero = true;
}
// 直到恢复原始值结束
bdone = bredzero && bgreenzero && bbluezero;
// 使系统改变调色板
ppal->animatepalette(0, ntotalcolors, palettecolors);
}
::translatemessage(&msg);
::dispatchmessage(&msg);
}
}
::releasecapture();
pwnd->killtimer(0x);
// 恢复原始调色板
ppal->setpaletteentries(0, ntotalcolors, palettecolors0);
ppal->animatepalette(0, ntotalcolors, palettecolors0);
}
四、渐隐
渐隐就是将显示颜色由图象各象素的颜色逐渐变化为黑色(rgb(0, 0, 0))的过程,即定时调用cpalette::animatepalette,每次将各逻辑表项的pered、pegreen、peblue值减小一个变化量,直到它们都为0。
下面的函数fadeout通过对调色板颜色表项中的各颜色分量值进行递减,直到所有颜色值都变成0(即黑色)来实现渐隐。
// 图象渐隐效果
// 参数:
// pwnd – 显示图象的窗口
// ppal – 调色板指针
// ndeta – 各颜色分量的减小量
// utimeout – 时间的变化量
void fadeout(cwnd *pwnd, cpalette *ppal, int ndeta, uint utimeout)
{
// 保留原来的调色板颜色表项
int ntotalcolors = ppal->getentrycount();
paletteentry palettecolors0[];
ppal->getpaletteentries(0, ntotalcolors, palettecolors0);
// 设置时间码
pwnd->settimer(0x, utimeout, null);
// 开始渐隐
pwnd->setcapture();
bool bdone = false;
msg msg;
while (! bdone)
{
if (::peekmessage(&msg, null, 0, 0, pm_remove))
{
if (msg.message == wm_timer && msg.wparam == 0x)
{
cclientdc dc(pwnd);
cpalette *poldpal = dc.selectpalette(ppal, false);
dc.realizepalette();
paletteentry palettecolors[];
ppal->getpaletteentries(0, ntotalcolors, palettecolors);
bool bredzero=false;
bool bgreenzero=false;
bool bbluezero=false;
// 递减颜色分量
for (int i=0; i<ntotalcolors; ++i)
{
if (palettecolors[i].pered > ndeta)
{
palettecolors[i].pered -= ndeta;
bredzero = false;
}
else if (palettecolors[i].pered > 1)
{
palettecolors[