about summary refs log tree commit diff
path: root/converter/other/pnmtosir.c
blob: 7b7650fe87dc24f800427bbccbdafebab5b9d5e0 (plain) (blame)
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/* pnmtosir.c - read a portable anymap and produce a Solitaire Image Recorder
**      file (MGI TYPE 11 or MGI TYPE 17)
**
** Copyright (C) 1991 by Marvin Landis
**
** Permission to use, copy, modify, and distribute this software and its
** documentation for any purpose and without fee is hereby granted, provided
** that the above copyright notice appear in all copies and that both that
** copyright notice and this permission notice appear in supporting
** documentation.  This software is provided "as is" without express or
** implied warranty.
*/

#include <stdbool.h>
#include "pnm.h"

#define MAXCOLORS 256



int
main(int argc, const char * argv[]) {

    FILE * ifP;
    xel ** xels;
    int rows, cols, format;
    unsigned int n;
    bool isGrayscale;
    xelval maxval;
    unsigned short Header[10];
    unsigned short LutHeader[5];
    unsigned short Lut[1024];

    pm_proginit(&argc, argv);

    if (argc-1 > 1)
        pm_error("There is only one possible argument: the input file.  "
                 "You specified %d", argc-1);

    if (argc-1 > 0) {
        const char * const inputFileName = argv[1];
        ifP = pm_openr(inputFileName);
    }  else {
        ifP = stdin;
    }

    xels = pnm_readpnm(ifP, &cols, &rows, &maxval, &format);

    /* Figure out the colormap. */
    switch (PNM_FORMAT_TYPE(format) ) {
    case PPM_TYPE:
        isGrayscale = false;
        pm_message("Writing a 24-bit SIR format (MGI TYPE 11)");
        break;

    case PGM_TYPE:
        isGrayscale = true;
        pm_message("Writing a grayscale SIR format (MGI TYPE 17)");
        break;

    default:
        isGrayscale = true;
        pm_message("Writing a monochrome SIR format (MGI TYPE 17)");
        break;
    }

    /* Set up the header. */
    Header[0] = 0x3a4f;
    Header[1] = 0;
    if (isGrayscale)
        Header[2] = 17;
    else
        Header[2] = 11;
    Header[3] = cols;
    Header[4] = rows;
    Header[5] = 0;
    Header[6] = 1;
    Header[7] = 6;
    Header[8] = 0;
    Header[9] = 0;
    for (n = 0; n < 10; n++)
        pm_writelittleshort(stdout,Header[n]);
    for (n = 10; n < 256; n++)
        pm_writelittleshort(stdout,0);

    /* Create color map */
    LutHeader[0] = 0x1524;
    LutHeader[1] = 0;
    LutHeader[2] = 5;
    LutHeader[3] = 256;
    LutHeader[4] = 256;
    for (n = 0; n < 5; ++n)
        pm_writelittleshort(stdout,LutHeader[n]);
    for (n = 5; n < 256; ++n)
        pm_writelittleshort(stdout,0);

    for (n = 0; n < 256; ++n) {
        unsigned int m;
        for (m = 0; m < 3; ++m)
            Lut[n * 4 + m] = n << 8;

        Lut[n * 4 + 3] = 0;
            /* Clear to ensure repeatable output, suppress Valgrind error */
    }

    for (n = 0; n < 1024; ++n)
        pm_writelittleshort(stdout,Lut[n]);

    /* Finally, write out the data. */
    switch (PNM_FORMAT_TYPE(format)) {
    case PPM_TYPE: {
        unsigned int row;
        for (row = 0; row < rows; ++row) {
            unsigned int col;
            for (col = 0; col < cols; ++col) {
                unsigned char const ub =
                    (char) (PPM_GETR(xels[row][col]) * (255 / maxval));
                fputc(ub, stdout);
            }
        }
        for (row = 0; row < rows; ++row) {
            unsigned int col;
            for (col = 0; col < cols; ++col) {
                unsigned const char ub =
                    (char) (PPM_GETG(xels[row][col]) * (255 / maxval));
                fputc(ub, stdout);
            }
        }
        for (row = 0; row < rows; ++row) {
            unsigned int col;
            for (col = 0; col < cols; ++col) {
                unsigned const char ub =
                    (char) (PPM_GETB(xels[row][col]) * (255 / maxval));
                fputc(ub, stdout);
            }
        }
    } break;

    default: {
        unsigned int row;
        for (row = 0; row < rows; ++row) {
            unsigned int col;
            for (col = 0; col < cols; ++col) {
                unsigned long const val = PNM_GET1(xels[row][col]);
                unsigned const char ub = (char) (val * (255 / maxval));
                fputc(ub, stdout);
            }
        }
    } break;
    }

    pm_close(ifP);

    return 0;
}