Subversion Repositories Kolibri OS

Rev

Rev 7254 | Rev 7867 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3107 leency 1
//Asper
5598 pavelyakov 2
#ifndef INCLUDE_LIBIMG_H
3
#define INCLUDE_LIBIMG_H
3107 leency 4
 
5598 pavelyakov 5
#ifndef INCLUDE_KOLIBRI_H
6
#include "../lib/kolibri.h"
7
#endif
8
 
9
#ifndef INCLUDE_MEM_H
10
#include "../lib/mem.h"
11
#endif
12
 
13
#ifndef INCLUDE_DLL_H
14
#include "../lib/dll.h"
15
#endif
16
 
17
#ifndef INCLUDE_LIBIO_H
7049 leency 18
#include "../lib/obj/libio.h"
5598 pavelyakov 19
#endif
20
 
3107 leency 21
//library
22
dword libimg = #alibimg;
7252 leency 23
char alibimg[] = "/sys/lib/libimg.obj";
5626 leency 24
 
3107 leency 25
dword libimg_init = #alibimg_init;
26
dword img_is_img  = #aimg_is_img;
27
dword img_to_rgb2 = #aimg_to_rgb2;
28
dword img_decode  = #aimg_decode;
29
dword img_destroy = #aimg_destroy;
30
dword img_draw    = #aimg_draw;
7229 leency 31
dword img_create  = #aimg_create;
32
dword img_encode  = #aimg_encode;
7190 leency 33
 
3107 leency 34
//dword img_flip    = #aimg_flip;
35
//dword img_rotate  = #aimg_rotate;
3839 Asper 36
$DD 2 dup 0
3107 leency 37
 
38
//import  libimg                     , \
7252 leency 39
char alibimg_init[] = "lib_init";
40
char aimg_is_img[]  = "img_is_img";
41
char aimg_to_rgb2[] = "img_to_rgb2";
42
char aimg_decode[]  = "img_decode";
43
char aimg_destroy[] = "img_destroy";
44
char aimg_draw[]    = "img_draw";
45
char aimg_create[]    = "img_create";
46
char aimg_encode[]    = "img_encode";
47
//char aimg_flip[]    = "img_flip";
48
//char aimg_rotate[]  = "img_rotate ";
3107 leency 49
 
7190 leency 50
#define LIBIMG_FORMAT_BMP       1
51
#define LIBIMG_FORMAT_ICO       2
52
#define LIBIMG_FORMAT_CUR       3
53
#define LIBIMG_FORMAT_GIF       4
54
#define LIBIMG_FORMAT_PNG       5
55
#define LIBIMG_FORMAT_JPEG      6
56
#define LIBIMG_FORMAT_TGA       7
57
#define LIBIMG_FORMAT_PCX       8
58
#define LIBIMG_FORMAT_XCF       9
59
#define LIBIMG_FORMAT_TIFF     10
60
#define LIBIMG_FORMAT_PNM      11
61
#define LIBIMG_FORMAT_WBMP     12
62
#define LIBIMG_FORMAT_XBM      13
63
#define LIBIMG_FORMAT_Z80      14
3107 leency 64
 
7190 leency 65
struct _Image
66
{
67
   dword Checksum; // ((Width ROL 16) OR Height) XOR Data[0]        ; ignored so far
68
   dword Width;
69
   dword Height;
70
   dword Next;
71
   dword Previous;
72
   dword Type;     // one of Image.bppN
73
   dword Data;
74
   dword Palette;  // used iff Type eq Image.bpp1, Image.bpp2, Image.bpp4 or Image.bpp8i
75
   dword Extended;
76
   dword Flags;    // bitfield
77
   dword Delay;    // used iff Image.IsAnimated is set in Flags
78
};
3107 leency 79
 
7190 leency 80
// values for Image.Type
81
// must be consecutive to allow fast switch on Image.Type in support functions
82
#define Image_bpp8i  1  // indexed
83
#define Image_bpp24  2
84
#define Image_bpp32  3
85
#define Image_bpp15  4
86
#define Image_bpp16  5
87
#define Image_bpp1   6
88
#define Image_bpp8g  7  // grayscale
89
#define Image_bpp2i  8
90
#define Image_bpp4i  9
7254 leency 91
#define Image_bpp8a 10  // grayscale with alpha channel; application layer only!!!
92
                        // kernel doesn't handle this image type,
93
                        // libimg can only create and destroy such images
7190 leency 94
 
95
 
7224 leency 96
:dword load_image(dword filename)
3107 leency 97
{
98
        //align 4
99
        dword img_data=0;
100
        dword img_data_len=0;
101
        dword fh=0;
102
        dword image=0;
103
 
104
        byte tmp_buf[40];
105
        $and     img_data, 0
106
        //$mov     eax, filename
107
        //$push    eax
108
        //invoke  file.open, eax, O_READ
109
        file_open stdcall (filename, O_READ);
110
        $or      eax, eax
111
        $jnz      loc05
112
        $stc
113
        return 0;
114
    @loc05:
115
        $mov     fh, eax
116
        //invoke  file.size
117
        file_size stdcall (filename);
118
        $mov     img_data_len, ebx
119
        //stdcall mem.Alloc, ebx
120
        mem_Alloc(EBX);
121
 
122
        $test    eax, eax
123
        $jz      error_close
124
        $mov     img_data, eax
125
        //invoke  file.read, [fh], eax, [img_data_len]
126
        file_read stdcall (fh, EAX, img_data_len);
127
        $cmp     eax, -1
128
        $jz      error_close
129
        $cmp     eax, img_data_len
130
        $jnz     error_close
131
        //invoke  file.close, [fh]
132
        file_close stdcall (fh);
133
        $inc     eax
134
        $jz      error_
135
//; img.decode checks for img.is_img
136
//;       //invoke  img.is_img, [img_data], [img_data_len]
137
//;       $or      eax, eax
138
//;       $jz      exit
139
        //invoke  img.decode, [img_data], [img_data_len], 0
140
        EAX=img_data;
141
        img_decode stdcall (EAX, img_data_len,0);
142
        $or      eax, eax
143
        $jz      error_
144
        $cmp     image, 0
145
        $pushf
146
        $mov     image, eax
147
        //call    init_frame
148
        $popf
149
        //call    update_image_sizes
150
        mem_Free(img_data);//free_img_data(img_data);
151
        $clc
152
        return image;
153
 
154
@error_free:
155
        //invoke  img.destroy, [image]
156
        img_destroy stdcall (image);
157
        $jmp     error_
158
 
159
@error_pop:
160
        $pop     eax
161
        $jmp     error_
162
@error_close:
163
        //invoke  file.close, [fh]
164
        file_close stdcall (fh);
165
@error_:
166
        mem_Free(img_data);
167
        $stc
168
        return 0;
169
}
5598 pavelyakov 170
 
7224 leency 171
:dword create_image(dword type, dword width, dword height) {
172
    img_create stdcall(width, height, type);
173
    return EAX;
174
}
175
 
176
// size - output parameter, error code / the size of encoded data
177
:dword encode_image(dword image_ptr, dword options, dword specific_options, dword* size) {
178
    img_encode stdcall(image_ptr, options, specific_options);
179
    ESDWORD[size] = ECX;
180
 
181
    return EAX;
182
}
183
 
184
:void DrawLibImage(dword image_pointer,x,y,w,h,offx,offy) {
6978 leency 185
    img_draw stdcall (
186
        image_pointer,
187
        x,
188
        y,
189
        w,
190
        h,
191
        offx,
192
        offy
193
    );
194
}
195
 
7254 leency 196
//NOTICE: DO NOT FORGET TO INIT libio AND libimg!!!
197
:void save_image(dword _image_pointer, _w, _h, _path)
7224 leency 198
{
199
    char save_success_message[4096+200];
200
    dword encoded_data=0;
201
    dword encoded_size=0;
202
    dword image_ptr = 0;
203
 
204
    image_ptr = create_image(Image_bpp24, _w, _h);
7190 leency 205
 
7224 leency 206
    if (image_ptr == 0) {
207
        notify("'Error saving file, probably not enought memory!' -E");
208
    }
209
    else {
210
        EDI = image_ptr;
7254 leency 211
        memmov(EDI._Image.Data, _image_pointer, _w * _h * 3);
7224 leency 212
 
213
        encoded_data = encode_image(image_ptr, LIBIMG_FORMAT_PNG, 0, #encoded_size);
214
 
215
        img_destroy stdcall(image_ptr);
216
 
217
        if(encoded_data == 0) {
218
            notify("'Error saving file, incorrect data!' -E");
219
        }
220
        else {
7227 leency 221
            if (CreateFile(encoded_size, encoded_data, _path) == 0) {
7783 leency 222
                strcpy(#save_success_message, "'File saved as ");
223
                strcat(#save_success_message, _path);
224
                strcat(#save_success_message, "' -O");
7224 leency 225
                notify(#save_success_message);
226
            }
227
            else {
7783 leency 228
                notify("'Error saving image file!\nNot enough space? Path wrong?\nFile system is not writable?..' -E");
7224 leency 229
            }
230
        }
231
    }
7190 leency 232
}
233
 
7229 leency 234
#ifndef INCLUDE_LIBIMG_LOAD_SKIN_H
235
#include "../lib/patterns/libimg_load_skin.h"
236
#endif
7224 leency 237
 
7229 leency 238
 
5598 pavelyakov 239
#endif