Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
d03436e7
Commit
d03436e7
authored
Dec 03, 2005
by
Cyril Deguet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* forgot to add the new files...
parent
07391315
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
194 additions
and
0 deletions
+194
-0
modules/gui/skins2/src/anim_bitmap.cpp
modules/gui/skins2/src/anim_bitmap.cpp
+116
-0
modules/gui/skins2/src/anim_bitmap.hpp
modules/gui/skins2/src/anim_bitmap.hpp
+78
-0
No files found.
modules/gui/skins2/src/anim_bitmap.cpp
0 → 100644
View file @
d03436e7
/*****************************************************************************
* anim_bitmap.cpp
*****************************************************************************
* Copyright (C) 2005 the VideoLAN team
* $Id$
*
* Authors: Cyril Deguet <asmax@via.ecp.fr>
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
#include "anim_bitmap.hpp"
#include "generic_bitmap.hpp"
#include "os_factory.hpp"
#include "os_graphics.hpp"
#include "os_timer.hpp"
AnimBitmap
::
AnimBitmap
(
intf_thread_t
*
pIntf
,
const
GenericBitmap
&
rBitmap
)
:
SkinObject
(
pIntf
),
m_pImage
(
NULL
),
m_curFrame
(
0
),
m_pTimer
(
NULL
),
m_cmdNextFrame
(
this
)
{
// Build the graphics
OSFactory
*
pOsFactory
=
OSFactory
::
instance
(
pIntf
);
m_pImage
=
pOsFactory
->
createOSGraphics
(
rBitmap
.
getWidth
(),
rBitmap
.
getHeight
()
);
m_pImage
->
drawBitmap
(
rBitmap
,
0
,
0
);
m_nbFrames
=
rBitmap
.
getNbFrames
();
m_frameRate
=
rBitmap
.
getFrameRate
();
// Create the timer
m_pTimer
=
pOsFactory
->
createOSTimer
(
m_cmdNextFrame
);
}
AnimBitmap
::~
AnimBitmap
()
{
delete
m_pImage
;
delete
m_pTimer
;
}
void
AnimBitmap
::
startAnim
()
{
if
(
m_nbFrames
>
1
&&
m_frameRate
>
0
)
{
m_pTimer
->
start
(
1000
/
m_frameRate
,
false
);
}
}
void
AnimBitmap
::
stopAnim
()
{
m_pTimer
->
stop
();
}
void
AnimBitmap
::
draw
(
OSGraphics
&
rImage
,
int
xDest
,
int
yDest
)
{
// Draw the current frame
int
height
=
m_pImage
->
getHeight
()
/
m_nbFrames
;
int
ySrc
=
height
*
m_curFrame
;
rImage
.
drawGraphics
(
*
m_pImage
,
0
,
ySrc
,
xDest
,
yDest
,
m_pImage
->
getWidth
(),
height
);
}
bool
AnimBitmap
::
hit
(
int
x
,
int
y
)
const
{
int
height
=
m_pImage
->
getHeight
()
/
m_nbFrames
;
if
(
y
>=
0
&&
y
<
height
)
{
return
m_pImage
->
hit
(
x
,
m_curFrame
*
height
+
y
);
}
else
{
return
false
;
}
}
int
AnimBitmap
::
getWidth
()
const
{
return
m_pImage
->
getWidth
();
}
int
AnimBitmap
::
getHeight
()
const
{
return
m_pImage
->
getHeight
()
/
m_nbFrames
;
}
void
AnimBitmap
::
CmdNextFrame
::
execute
()
{
// Go the next frame
m_pParent
->
m_curFrame
=
(
m_pParent
->
m_curFrame
+
1
)
%
m_pParent
->
m_nbFrames
;
// Notify the observer so that it can display the next frame
m_pParent
->
notify
();
}
modules/gui/skins2/src/anim_bitmap.hpp
0 → 100644
View file @
d03436e7
/*****************************************************************************
* anim_bitmap.hpp
*****************************************************************************
* Copyright (C) 2005 the VideoLAN team
* $Id$
*
* Authors: Cyril Deguet <asmax@via.ecp.fr>
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
#ifndef ANIM_BITMAP_HPP
#define ANIM_BITMAP_HPP
#include "../commands/cmd_generic.hpp"
#include "../utils/observer.hpp"
#include "../utils/position.hpp"
class
GenericBitmap
;
class
OSGraphics
;
class
OSTimer
;
/// Animated bitmap
class
AnimBitmap
:
public
SkinObject
,
public
Box
,
public
Subject
<
AnimBitmap
>
{
public:
AnimBitmap
(
intf_thread_t
*
pIntf
,
const
GenericBitmap
&
rBitmap
);
virtual
~
AnimBitmap
();
/// Start the animation
void
startAnim
();
/// Stop the animation
void
stopAnim
();
/// Draw the current frame on another graphics
void
draw
(
OSGraphics
&
rImage
,
int
xDest
,
int
yDest
);
/// Tell whether the pixel at the given position is visible
bool
hit
(
int
x
,
int
y
)
const
;
/// Get the size of the current frame
virtual
int
getWidth
()
const
;
virtual
int
getHeight
()
const
;
private:
/// Graphics to store the bitmap
OSGraphics
*
m_pImage
;
/// Number of frames
int
m_nbFrames
;
/// Frame rate
int
m_frameRate
;
/// Curent frame
int
m_curFrame
;
/// Timer for the animation
OSTimer
*
m_pTimer
;
/// Callback for the timer
DEFINE_CALLBACK
(
AnimBitmap
,
NextFrame
);
};
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment