summaryrefslogtreecommitdiffstats
path: root/zrlepalettehelper.c
blob: 70cafb4e14fa368f01a3c718ff514b55ee58b0b9 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
 * Copyright (C) 2002 RealVNC Ltd.  All Rights Reserved.
 * Copyright (C) 2003 Sun Microsystems, Inc.
 *
 * This 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 software 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 software; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
 * USA.
 */

#include <zrlepalettehelper.h>
#include <assert.h>
#include <string.h>

#define ZRLE_HASH(pix) (((pix) ^ ((pix) >> 17)) & 4095)

void zrlePaletteHelperInit(zrlePaletteHelper *helper)
{
  memset(helper->palette, 0, sizeof(helper->palette));
  memset(helper->index, 255, sizeof(helper->index));
  memset(helper->key, 0, sizeof(helper->key));
  helper->size = 0;
}

void zrlePaletteHelperInsert(zrlePaletteHelper *helper, zrle_U32 pix)
{
  if (helper->size < ZRLE_PALETTE_MAX_SIZE) {
    int i = ZRLE_HASH(pix);

    while (helper->index[i] != 255 && helper->key[i] != pix)
      i++;
    if (helper->index[i] != 255) return;

    helper->index[i] = helper->size;
    helper->key[i] = pix;
    helper->palette[helper->size] = pix;
  }
  helper->size++;
}

int zrlePaletteHelperLookup(zrlePaletteHelper *helper, zrle_U32 pix)
{
  int i = ZRLE_HASH(pix);

  assert(helper->size <= ZRLE_PALETTE_MAX_SIZE);
  
  while (helper->index[i] != 255 && helper->key[i] != pix)
    i++;
  if (helper->index[i] != 255) return helper->index[i];

  return -1;
}