Subversion Repositories SvarDOS

Rev

Rev 96 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 96 Rev 116
1
/*
1
/*
2
 * This program creates a header file for the Svarog386 installer, that
2
 * This program creates a header file for the Svarog386 installer, that
3
 * contains the list of all supported keyboard layouts, along with a way to
3
 * contains the list of all supported keyboard layouts, along with a way to
4
 * select sets of keyboard layouts that apply to only a specific region.
4
 * select sets of keyboard layouts that apply to only a specific region.
5
 *
5
 *
6
 * Copyright (C) 2016 Mateusz Viste
6
 * Copyright (C) 2016 Mateusz Viste
7
 */
7
 */
8
 
8
 
9
/* the kblayouts list is a NULL-terminated array that contains entries in the
9
/* the kblayouts list is a NULL-terminated array that contains entries in the
10
 * following format:
10
 * following format:
11
 * human description string <0> layout code string <0> <codepage number as a 16bit value> <ega.sys file number as a single byte> <keyboard.sys file number as a single byte> <sub keyb ID as a 16bit value, zero if none>
11
 * human description string <0> layout code string <0> <codepage number as a 16bit value> <ega.sys file number as a single byte> <keyboard.sys file number as a single byte> <sub keyb ID as a 16bit value, zero if none>
12

12

13
    char *kblayouts[] = {
13
    char *kblayouts[] = {
14
    "English (US)\0xxxx",
14
    "English (US)\0xxxx",
15
    "Polish\0pl\0xxxx"};
15
    "Polish\0pl\0xxxx"};
16
  };
16
  };
17
 */
17
 */
18
 
18
 
19
 
19
 
20
#include <stdio.h>
20
#include <stdio.h>
21
#include <string.h>
21
#include <string.h>
22
 
22
 
23
 
23
 
24
/* global file pointers */
24
/* global file pointers */
25
FILE *fdkeyb, *fdoff;
25
FILE *fdkeyb, *fdoff;
26
 
26
 
27
 
27
 
28
/* Converts a positive base_10 into base_8 */
28
/* Converts a positive base_10 into base_8 */
29
static unsigned int dec2oct(int n) {
29
static unsigned int dec2oct(int n) {
30
  int res=0, digitPos=1;
30
  int res=0, digitPos=1;
31
  while (n) {
31
  while (n) {
32
    res += (n & 7) * digitPos;
32
    res += (n & 7) * digitPos;
33
    n >>= 3;
33
    n >>= 3;
34
    digitPos *= 10;
34
    digitPos *= 10;
35
  }
35
  }
36
  return(res);
36
  return(res);
37
}
37
}
38
 
38
 
39
 
39
 
40
static void addnew(char *countrycode, char *humanlang, char *keybcode, unsigned short cp, unsigned char egafile, unsigned char keybfile, unsigned int subid) {
40
static void addnew(char *countrycode, char *humanlang, char *keybcode, unsigned short cp, unsigned char egafile, unsigned char keybfile, unsigned int subid) {
41
  static char lastcountry[4] = {0};
41
  static char lastcountry[4] = {0};
42
  static int curoffset = 0, curcountryoffset = 0;
42
  static int curoffset = 0, curcountryoffset = 0;
43
  /* if new country, declare an offset */
43
  /* if new country, declare an offset */
44
  if (strcmp(countrycode, lastcountry) != 0) {
44
  if (strcmp(countrycode, lastcountry) != 0) {
45
    /* close previous one, if any */
45
    /* close previous one, if any */
46
    if (lastcountry[0] != 0) {
46
    if (lastcountry[0] != 0) {
47
      fprintf(fdoff, "#define OFFLEN_%s %d\r\n", lastcountry, curoffset - curcountryoffset);
47
      fprintf(fdoff, "#define OFFLEN_%s %d\r\n", lastcountry, curoffset - curcountryoffset);
48
    } else {
48
    } else {
49
      fprintf(fdkeyb, "char *kblayouts[] = {\r\n");
49
      fprintf(fdkeyb, "char *kblayouts[] = {\r\n");
50
    }
50
    }
51
    /* open new one, if any */
51
    /* open new one, if any */
52
    if (countrycode[0] != 0) {
52
    if (countrycode[0] != 0) {
53
      fprintf(fdkeyb, "  /****** %s ******/\r\n", countrycode);
53
      fprintf(fdkeyb, "  /****** %s ******/\r\n", countrycode);
54
      curcountryoffset = curoffset;
54
      curcountryoffset = curoffset;
55
      fprintf(fdoff, "#define OFFLOC_%s %d\r\n", countrycode, curoffset);
55
      fprintf(fdoff, "#define OFFLOC_%s %d\r\n", countrycode, curoffset);
56
      strcpy(lastcountry, countrycode);
56
      strcpy(lastcountry, countrycode);
57
    } else {
57
    } else {
58
      fprintf(fdoff, "#define OFFCOUNT %d\r\n", curoffset);
58
      fprintf(fdoff, "#define OFFCOUNT %d\r\n", curoffset);
59
    }
59
    }
60
  }
60
  }
61
  /* */
61
  /* */
62
  if (countrycode[0] != 0) {
62
  if (countrycode[0] != 0) {
63
    fprintf(fdkeyb, "  \"%s\\0%s\\0\\%d\\%d\\%d\\%d\\%d\\%d\",\r\n", humanlang, keybcode, dec2oct(cp >> 8), dec2oct(cp & 0xff), dec2oct(egafile), dec2oct(keybfile), dec2oct(subid >> 8), dec2oct(subid & 0xff));
63
    fprintf(fdkeyb, "  \"%s\\0%s\\0\\%d\\%d\\%d\\%d\\%d\\%d\",\r\n", humanlang, keybcode, dec2oct(cp >> 8), dec2oct(cp & 0xff), dec2oct(egafile), dec2oct(keybfile), dec2oct(subid >> 8), dec2oct(subid & 0xff));
64
  } else {
64
  } else {
65
    fprintf(fdkeyb, "  NULL};\r\n");
65
    fprintf(fdkeyb, "  NULL};\r\n");
66
  }
66
  }
67
  curoffset++;
67
  curoffset++;
68
}
68
}
69
 
69
 
70
 
70
 
71
int main(void) {
71
int main(void) {
72
 
72
 
73
  /*** open files ***/
73
  /*** open files ***/
74
  fdkeyb = fopen("keylay.h", "wb");
74
  fdkeyb = fopen("keylay.h", "wb");
75
  fdoff = fopen("keyoff.h", "wb");
75
  fdoff = fopen("keyoff.h", "wb");
-
 
76
  fprintf(fdkeyb, "/* DO NOT EDIT THIS FILE, IT IS AUTO-GENERATED BY LOCALES.EXE */\r\n");
-
 
77
  fprintf(fdoff, "/* DO NOT EDIT THIS FILE, IT IS AUTO-GENERATED BY LOCALES.EXE */\r\n");
76
 
78
 
77
  /******************* LAYOUTS LIST START *******************/
79
  /******************* LAYOUTS LIST START *******************/
78
 
80
 
79
  /* English */
81
  /* English */
80
  addnew("EN", "English (US)", "en", 437, 0, 0, 0);
82
  addnew("EN", "English (US)", "en", 437, 0, 0, 0);
81
  addnew("EN", "English (UK)", "uk", 437, 0, 1, 0);
83
  addnew("EN", "English (UK)", "uk", 437, 0, 1, 0);
82
 
84
 
83
  /* French */
85
  /* French */
84
  addnew("FR", "French (France)", "fr", 858, 1, 1, 0);
86
  addnew("FR", "French (France)", "fr", 858, 1, 1, 0);
85
  addnew("FR", "French (Canada, standard)", "cf", 863, 9, 1, 0);
87
  addnew("FR", "French (Canada, standard)", "cf", 863, 9, 1, 0);
86
  addnew("FR", "French (Canada, legacy)", "cf", 863, 9, 1, 501);
88
  addnew("FR", "French (Canada, legacy)", "cf", 863, 9, 1, 501);
87
 
89
 
88
  /* German */
90
  /* German */
89
  addnew("DE", "German", "de", 858, 1, 1, 0);
91
  addnew("DE", "German", "de", 858, 1, 1, 0);
90
 
92
 
91
  /* Hungarian */
93
  /* Hungarian */
92
  addnew("HU", "Hungarian", "hu", 852, 1, 1, 208);
94
  addnew("HU", "Hungarian", "hu", 852, 1, 1, 208);
93
 
95
 
94
  /* Polish */
96
  /* Polish */
95
  addnew("PL", "Polish", "pl", 991, 10, 1, 0);
97
  addnew("PL", "Polish", "pl", 991, 10, 1, 0);
96
 
98
 
-
 
99
  /* Russian */
-
 
100
  addnew("RU", "Russian (Standard)", "ru", 866, 3, 2, 0);
-
 
101
  addnew("RU", "Russian (Typewriter)", "ru", 866, 3, 2, 443);
-
 
102
 
97
  /* Spanish */
103
  /* Spanish */
98
  addnew("ES", "Spanish", "es", 858, 1, 1, 0);
104
  addnew("ES", "Spanish", "es", 858, 1, 1, 0);
99
 
105
 
100
  /* Turkish */
106
  /* Turkish */
101
  addnew("TR", "Turkish", "tr", 857, 1, 2, 0);
107
  addnew("TR", "Turkish", "tr", 857, 1, 2, 0);
102
 
108
 
103
  /******************* LAYOUTS LIST STOP *******************/
109
  /******************* LAYOUTS LIST STOP *******************/
104
 
110
 
105
  /* end of list - DO NOT REMOVE */
111
  /* end of list - DO NOT REMOVE */
106
  addnew("", "", "", 0, 0, 0, 0);
112
  addnew("", "", "", 0, 0, 0, 0);
107
 
113
 
108
  /* close files */
114
  /* close files */
109
  fclose(fdoff);
115
  fclose(fdoff);
110
  fclose(fdkeyb);
116
  fclose(fdkeyb);
111
 
117
 
112
  return(0);
118
  return(0);
113
}
119
}
114
 
120