mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
d62e41d601
*Added sources of the custom libs to the branches *Fixed crash when switching from list layout to grid/carousel layout *Removed 1:1 copy option because its meaningless and almost the same as installing all partitions *Fixed install partition selection. This option needs a reset. Go to settings and reselect your option for this. *Fixed schinese and tchinese language modes (filename bugs. has to be schinese.lang and tchinese.lang like on SVN) *Fixed bug in sound buffer circle *Fixed incorrect behaviour of x-flip when selecting system like (thx Cyan for the patch) *Accept ios revision 65535 for Waninkokos IOSes (thx to PPSainity for pointing it out) *Merged the new theming style branch into trunk. Just as a reminder: ALL old themes will not work until the themers did port it to the new style! *Removed old theme style completely Theme example: The example file of the theme is the Default.them file. It can be found in the SVN trunk. Change in loading of themes: When selecting a theme now a list of all .them files in a folder is displayed. The image folder of that theme has to be in the same folder as the .them file. The image path is defined in the head of the .them file in the line with "Image-Folder: Example\n".
93 lines
3.8 KiB
C++
93 lines
3.8 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2010
|
|
* by Dimok
|
|
*
|
|
* This software is provided 'as-is', without any express or implied
|
|
* warranty. In no event will the authors be held liable for any
|
|
* damages arising from the use of this software.
|
|
*
|
|
* Permission is granted to anyone to use this software for any
|
|
* purpose, including commercial applications, and to alter it and
|
|
* redistribute it freely, subject to the following restrictions:
|
|
*
|
|
* 1. The origin of this software must not be misrepresented; you
|
|
* must not claim that you wrote the original software. If you use
|
|
* this software in a product, an acknowledgment in the product
|
|
* documentation would be appreciated but is not required.
|
|
*
|
|
* 2. Altered source versions must be plainly marked as such, and
|
|
* must not be misrepresented as being the original software.
|
|
*
|
|
* 3. This notice may not be removed or altered from any source
|
|
* distribution.
|
|
*
|
|
* for WiiXplorer 2010
|
|
***************************************************************************/
|
|
#ifndef BUFFER_CIRCLE_HPP_
|
|
#define BUFFER_CIRCLE_HPP_
|
|
|
|
#include <vector>
|
|
#include <gctypes.h>
|
|
|
|
class BufferCircle
|
|
{
|
|
public:
|
|
//!> Constructor
|
|
BufferCircle();
|
|
//!> Destructor
|
|
~BufferCircle();
|
|
//!> Set circle size
|
|
void Resize(int size);
|
|
//!> Get the circle size
|
|
int Size() { return SoundBuffer.size(); };
|
|
//!> Set/resize the buffer size
|
|
void SetBufferBlockSize(int size);
|
|
//!> Remove a buffer
|
|
void RemoveBuffer(int pos);
|
|
//!> Set all buffers clear
|
|
void ClearBuffer();
|
|
//!> Free all buffers
|
|
void FreeBuffer();
|
|
//!> Switch to next buffer
|
|
void LoadNext();
|
|
//!> Get the current buffer
|
|
u8 * GetBuffer() { if(!Valid(which)) return 0; return SoundBuffer[which]; };
|
|
//!> Get a buffer at a position
|
|
u8 * GetBuffer(int pos) { if(!Valid(pos)) return NULL; else return SoundBuffer[pos]; };
|
|
//!> Get next buffer
|
|
u8 * GetNextBuffer() { if(Size() <= 0) return 0; else return SoundBuffer[(which+1) % Size()]; };
|
|
//!> Get previous buffer
|
|
u8 * GetLastBuffer() { if(Size() <= 0) return 0; else return SoundBuffer[(which+Size()-1) % Size()]; };
|
|
//!> Get current buffer size
|
|
u32 GetBufferSize() { if(!Valid(which)) return 0; else return BufferSize[which]; };
|
|
//!> Get buffer size at position
|
|
u32 GetBufferSize(int pos) { if(!Valid(pos)) return 0; else return BufferSize[pos]; };
|
|
//!> Get previous buffer size
|
|
u32 GetLastBufferSize() { if(Size() <= 0) return 0; else return BufferSize[(which+Size()-1) % Size()]; };
|
|
//!> Is current buffer ready
|
|
bool IsBufferReady() { if(!Valid(which)) return false; else return BufferReady[which]; };
|
|
//!> Is a buffer at a position ready
|
|
bool IsBufferReady(int pos) { if(!Valid(pos)) return false; else return BufferReady[pos]; };
|
|
//!> Is next buffer ready
|
|
bool IsNextBufferReady() { if(Size() <= 0) return false; else return BufferReady[(which+1) % Size()]; };
|
|
//!> Is last buffer ready
|
|
bool IsLastBufferReady() { if(Size() <= 0) return false; else return BufferReady[(which+Size()-1) % Size()]; };
|
|
//!> Set a buffer at a position to a ready state
|
|
void SetBufferReady(int pos, bool st);
|
|
//!> Set the buffersize at a position
|
|
void SetBufferSize(int pos, int size);
|
|
//!> Get the current position in the circle
|
|
u16 Which() { return which; };
|
|
protected:
|
|
//!> Check if the position is a valid position in the vector
|
|
bool Valid(int pos) { return !(pos < 0 || pos >= Size()); };
|
|
|
|
u16 which;
|
|
u32 BufferBlockSize;
|
|
std::vector<u8 *> SoundBuffer;
|
|
std::vector<u32> BufferSize;
|
|
std::vector<bool> BufferReady;
|
|
};
|
|
|
|
#endif
|