File: KBlocksPieceGenerator.h

package info (click to toggle)
kblocks 4%3A18.04.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,824 kB
  • sloc: cpp: 8,322; xml: 123; makefile: 5; sh: 2
file content (31 lines) | stat: -rw-r--r-- 1,035 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/***************************************************************************
*   KBlocks, a falling blocks game by KDE                                *
*   Copyright (C) 2010 Zhongjie Cai <squall.leonhart.cai@gmail.com>       *
*                                                                         *
*   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.                                   *
***************************************************************************/
#ifndef KBLOCKSPIECEGENERATOR_H
#define KBLOCKSPIECEGENERATOR_H

class KBlocksPieceGenerator
{
public:
    explicit KBlocksPieceGenerator(int size = 4096);
    ~KBlocksPieceGenerator();

public:
    void genList(int seed);
    int getPiece();
    int getIndex();

private:
    int  maxCapacity;
    int  pieceIndex;
    int *maPieceList;
};

#endif