File: const.c

package info (click to toggle)
libticalcs3 3.3.5-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,824 kB
  • ctags: 1,880
  • sloc: ansic: 18,809; sh: 9,396; makefile: 349; sed: 93
file content (115 lines) | stat: -rw-r--r-- 2,894 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*  libticalcs - calculator library, a part of the TiLP project
 *  Copyright (C) 1999-2002  Romain Lievin
 *
 *  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-1307, USA.
 */

#include <math.h>

#include "defsxx.h"
#include "calc_ext.h"

/****************/
/* Global types */
/****************/

#define NCALCS 9

static const char GROUP_FILE_EXT[NCALCS+1][4]=
{  
  "XxX", "9Xg", "92g", "89g", "86g", "85g", "8Xg", "83g", "82g", "73g"
};

static const char BACKUP_FILE_EXT[NCALCS+1][4]=
{ 
  "XxX", "9Xg", "92b", "89g", "86b", "85b", "8Xg", "83b", "82b" , "73g"
};

static const char FLASH_APP_FILE_EXT[NCALCS+1][4]=
{
  "XxX", "9Xk", "???", "89k", "???", "???", "8Xk", "???", "???", "73k"
};

static const char FLASH_OS_FILE_EXT[NCALCS+1][4]=
{
  "XxX", "9Xu", "???", "89u", "???", "???", "8Xu", "???", "???", "73u"
};


static const int TIXX_DIR[NCALCS+1]=
{ 
  -1, TI92p_DIR, TI92_DIR, TI89_DIR, TI86_DIR, -1, TI83p_DIR, TI83_DIR, TI73_DIR
};

static const int TIXX_FLASH[NCALCS+1]=
{
  -1, TI92p_FLASH, -1, TI89_FLASH, -1, -1, TI83p_FLASH, -1, TI73_FLASH
};


static const char PAK_NAME[NCALCS+1][10]=
{ 
  "", "TI92+_PAK", "TI92_PAK", "TI89_PAK", "TI86_PAK", "TI85_PAK", 
  "TI83+_PAK", "TI83_PAK", "TI82_PAK", "TI73_PAK"
};

extern const struct ti_key TI89_KEYS[];
extern const struct ti_key TI92P_KEYS[];
#define TI92_KEYS TI92P_KEYS

TIEXPORT const char* TICALL ticalc_group_file_ext(int calc_type)
{
  return GROUP_FILE_EXT[calc_type];
}

TIEXPORT const char* TICALL ticalc_backup_file_ext(int calc_type)
{
  return BACKUP_FILE_EXT[calc_type];
}

TIEXPORT const char* TICALL ticalc_flash_app_file_ext(int calc_type)
{
  return FLASH_APP_FILE_EXT[calc_type];
}

TIEXPORT const char* TICALL ticalc_flash_os_file_ext(int calc_type)
{
  return FLASH_OS_FILE_EXT[calc_type];
}

TIEXPORT const int TICALL ticalc_folder_type(int calc_type)
{
  return TIXX_DIR[calc_type];
}

TIEXPORT const int TICALL ticalc_flash_type(int calc_type)
{
  return TIXX_FLASH[calc_type];
}

const char *pak_name(int calc_type)
{
  return PAK_NAME[calc_type];
}

const struct ti_key ti89_keys(unsigned char ascii_code)
{
  return TI89_KEYS[ascii_code];
}

const struct ti_key ti92_keys(unsigned char ascii_code)
{
  return TI92_KEYS[ascii_code];
}