about summary refs log tree commit diff
path: root/converter/pbm/pbmto4425.c
blob: f18b2e5a4136fe01d217ceea728a61fca0c91358 (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
#include <assert.h>
#include <string.h>

#include "nstring.h"
#include "mallocvar.h"
#include "pbm.h"

static char const bit_table[2][3] = {
    {1, 4, 0x10},
    {2, 8, 0x40}
};

static unsigned int const vmapWidth  = 132;
static unsigned int const vmapHeight = 23;



static void
initMap(char * const vmap) {

    unsigned int col;

    for (col = 0; col < vmapWidth; ++col) {
        unsigned int row;

        for (row = 0; row < vmapHeight; ++row)
            vmap[row * vmapWidth + col] = ' ';
    }
}



static void
setVmap(char *       const vmap,
        unsigned int const x,
        unsigned int const y) {

    unsigned int const ix = x/2;
    unsigned int const iy = y/3;

    assert(ix < vmapWidth);
    assert(iy < vmapHeight);

    vmap[iy * vmapWidth + ix] |= bit_table[x % 2][y % 3];
}



static void
fillMap(FILE * const pbmFileP,
        char * const vmap) {

    unsigned int const xres = vmapWidth  * 2;
    unsigned int const yres = vmapHeight * 3;

    bit ** pbmImage;
    int cols;
    int rows;
    unsigned int row;

    pbmImage = pbm_readpbm(pbmFileP, &cols, &rows);

    for (row = 0; row < rows && row < yres; ++row) {
        unsigned int col;

        for (col = 0; col < cols && col < xres; ++col) {
            if (pbmImage[row][col] == PBM_WHITE)
                setVmap(vmap, col, row);
        }
    }
}



static void
printMap(char * const vmap,
         FILE * const ofP) {

    unsigned int row;

    fputs("\033[H\033[J", ofP);  /* clear screen */
    fputs("\033[?3h",     ofP);  /* 132 column mode */
    fputs("\033)}\016",   ofP);  /* mosaic mode */

    for (row = 0; row < vmapHeight; ++row) {
        unsigned int endCol;
            /* Column number just past the non-space data in the row;
               (i.e. spaces on the right are padding; not data
            */
        unsigned int col;

        for (endCol = vmapWidth;
             endCol > 0 && vmap[row * vmapWidth + (endCol-1)] == ' ';
             --endCol)
            ;

        for (col = 0; col < endCol; ++col)
            fputc(vmap[row * vmapWidth + col], ofP);

        fputc('\n', ofP);
    }

    fputs("\033(B\017", ofP);
}



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

    unsigned int argn;
    const char * inputFileNm;
    FILE * ifP;

    char * vmap;  /* malloced */

    pm_proginit(&argc, argv);

    for (argn = 1;
         argn < argc && argv[argn][0] == '-' && strlen(argv[argn]) > 1;
         ++argn) {
        pm_error("Unrecognized option '%s'", argv[argn]);
    }

    if (argn >= argc) {
        inputFileNm = "-";
    } else if(argc - argn != 1) {
        pm_error("Too many arguments.  At most one argument is allowed: "
                 "Name of the input file");
    } else {
        inputFileNm = argv[argn];
    }

    ifP = pm_openr(inputFileNm);

    assert(vmapWidth < UINT_MAX/vmapHeight);

    MALLOCARRAY(vmap, vmapWidth * vmapHeight);
    if (!vmap)
        pm_error("Cannot allocate memory for %u x %u pixels",
                 vmapWidth, vmapHeight);

    initMap(vmap);
    fillMap(ifP, vmap);
    printMap(vmap, stdout);

    free(vmap);

    /* If the program failed, it previously aborted with nonzero completion
       code, via various function calls.
    */
    return 0;
}