summaryrefslogtreecommitdiff
path: root/Source/ShConstants.cpp
blob: 01269d54752f7af7ebf799ab7bda7df4a2a3e776 (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
63
64
65
66
67
68
69
#include "ShConstants.h"

ConstantsStringList::ConstantsStringList()
{
  index = 0;
}

int ConstantsStringList::add(const char *name, int value1, int value2)
{
  int pos=SortedStringListND<struct constantstring>::add(name);
  if (pos == -1) return -1;

  ((struct constantstring*)gr.get())[pos].index = index;
  ((struct constantstring*)gr.get())[pos].pos = pos;
  ((struct constantstring*)gr.get())[pos].value1 = value1;
  ((struct constantstring*)gr.get())[pos].value2 = value2;

  int temp = index;
  index++;

  return temp;
}

int ConstantsStringList::get(char *name, int n_chars /*= -1*/)
{
  int v=SortedStringListND<struct constantstring>::find(name, n_chars);
  if (v==-1) return -1;
  return (((struct constantstring*)gr.get())[v].index);
}

int ConstantsStringList::getnum()
{
  return index;
}

int ConstantsStringList::get_value1(int idx)
{
  int pos=get_internal_idx(idx);
  if (pos==-1) return -1;
  return (((struct constantstring*)gr.get())[pos].value1);
}

int ConstantsStringList::get_value2(int idx)
{
  int pos=get_internal_idx(idx);
  if (pos==-1) return -1;
  return (((struct constantstring*)gr.get())[pos].value2);
}

char* ConstantsStringList::idx2name(int idx)
{
  int pos=get_internal_idx(idx);
  if (pos==-1) return NULL;
  struct constantstring *data=(struct constantstring *)gr.get();      
  return ((char*)strings.get() + data[pos].name);
}

int ConstantsStringList::get_internal_idx(int idx)
{
  struct constantstring *data=(struct constantstring *)gr.get();      
  for (int i = 0; i < index; i++)
  {
    if (data[i].index == idx)
    {
      return i;
    }
  }
  return -1;
}