forked from KolibriOS/kolibrios
EasyShot 0.5: first working version
git-svn-id: svn://kolibrios.org@7221 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
e581b0e504
commit
411429935f
@ -1,4 +1,8 @@
|
|||||||
#define MEMSIZE 1024 * 420
|
// TODO
|
||||||
|
// Settings: delay, savepath
|
||||||
|
// Icons and better UI
|
||||||
|
|
||||||
|
#define MEMSIZE 1024 * 20
|
||||||
#include "../lib/kolibri.h"
|
#include "../lib/kolibri.h"
|
||||||
#include "../lib/strings.h"
|
#include "../lib/strings.h"
|
||||||
#include "../lib/mem.h"
|
#include "../lib/mem.h"
|
||||||
@ -10,14 +14,26 @@
|
|||||||
#include "lang.h--"
|
#include "lang.h--"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* === TRANSLATIONS === */
|
||||||
|
|
||||||
|
#ifdef LANG_RUS
|
||||||
|
?define T_TAKE_SCREENSHOT "‘¤¥« âì áªà¨è®â"
|
||||||
|
?define T_SAVE "‘®åà ¨âì"
|
||||||
|
?define T_PREVIEW "<EFBFBD>।¯à®á¬®âà"
|
||||||
|
#else
|
||||||
|
?define T_TAKE_SCREENSHOT "Take a screenshot"
|
||||||
|
?define T_SAVE "Save"
|
||||||
|
?define T_PREVIEW "Preview"
|
||||||
|
#endif
|
||||||
|
|
||||||
/* === DATA === */
|
/* === DATA === */
|
||||||
|
|
||||||
proc_info Form;
|
proc_info Form;
|
||||||
|
|
||||||
dword b_screen,
|
dword screenshot,
|
||||||
preview;
|
preview;
|
||||||
|
|
||||||
int b_screen_length,
|
int screenshot_length,
|
||||||
preview_width,
|
preview_width,
|
||||||
preview_height,
|
preview_height,
|
||||||
preview_length;
|
preview_length;
|
||||||
@ -27,7 +43,7 @@ enum {
|
|||||||
BTN_SAVE
|
BTN_SAVE
|
||||||
};
|
};
|
||||||
|
|
||||||
#define TOOLBAR_H 50;
|
#define TOOLBAR_H 46;
|
||||||
|
|
||||||
/* === CODE === */
|
/* === CODE === */
|
||||||
|
|
||||||
@ -35,13 +51,17 @@ enum {
|
|||||||
void main()
|
void main()
|
||||||
{
|
{
|
||||||
char id;
|
char id;
|
||||||
b_screen_length = screen.width * screen.height * 3;
|
int take_scr_btn_width;
|
||||||
|
|
||||||
|
load_dll(libimg, #libimg_init, 1);
|
||||||
|
|
||||||
|
screenshot_length = screen.width * screen.height * 3;
|
||||||
preview_width = screen.width / 2;
|
preview_width = screen.width / 2;
|
||||||
preview_height = screen.height / 2;
|
preview_height = screen.height / 2;
|
||||||
preview_length = b_screen_length / 2;
|
preview_length = screenshot_length / 2;
|
||||||
|
|
||||||
b_screen = malloc(b_screen_length);
|
screenshot = malloc(screenshot_length);
|
||||||
preview = malloc(b_screen_length/2);
|
preview = malloc(screenshot_length/2);
|
||||||
|
|
||||||
loop() switch(WaitEvent())
|
loop() switch(WaitEvent())
|
||||||
{
|
{
|
||||||
@ -61,18 +81,19 @@ void main()
|
|||||||
case evReDraw:
|
case evReDraw:
|
||||||
system.color.get();
|
system.color.get();
|
||||||
DefineAndDrawWindow(screen.width/4, screen.height/4,
|
DefineAndDrawWindow(screen.width/4, screen.height/4,
|
||||||
preview_width + 9, preview_height + skin_height + TOOLBAR_H,
|
preview_width + 9, preview_height + skin_height + TOOLBAR_H + 4,
|
||||||
0x74, 0, "EasyShot v0.3",0);
|
0x74, 0, "EasyShot v0.5",0);
|
||||||
GetProcessInfo(#Form, SelfInfo);
|
GetProcessInfo(#Form, SelfInfo);
|
||||||
if (Form.status_window>2) break;
|
if (Form.status_window>2) break;
|
||||||
DrawBar(0, 0, Form.cwidth, TOOLBAR_H-4, system.color.work);
|
DrawBar(0, 0, Form.cwidth, TOOLBAR_H, system.color.work);
|
||||||
DrawStandartCaptButton(10, 10, BTN_MAKE_SCREENSHOT, "Take a screenshot");
|
take_scr_btn_width = DrawStandartCaptButton(10, 10, BTN_MAKE_SCREENSHOT, T_TAKE_SCREENSHOT);
|
||||||
_PutImage(0, Form.cheight - preview_height, preview_width, preview_height, preview);
|
|
||||||
if (ESDWORD[preview]==0) {
|
if (ESDWORD[preview]==0) {
|
||||||
WriteTextB(Form.cwidth/2 - 90, Form.cheight/2+10, 0x90, 0xFFFfff, "There will be a preview");
|
DrawBar(0, TOOLBAR_H, preview_width, preview_height, 0xEEEeee);
|
||||||
|
WriteText(Form.cwidth-calc(strlen(T_PREVIEW)*8)/2, Form.cheight/2, 0x90, 0x777777, T_PREVIEW);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
DrawStandartCaptButton(200, 10, BTN_SAVE, "Save");
|
_PutImage(0, TOOLBAR_H, preview_width, preview_height, preview);
|
||||||
|
DrawStandartCaptButton(take_scr_btn_width + 10, 10, BTN_SAVE, T_SAVE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -80,19 +101,25 @@ void main()
|
|||||||
void EventTakeScreenshot() {
|
void EventTakeScreenshot() {
|
||||||
MinimizeWindow();
|
MinimizeWindow();
|
||||||
pause(100);
|
pause(100);
|
||||||
CopyScreen(b_screen, 0, 0, screen.width, screen.height);
|
CopyScreen(screenshot, 0, 0, screen.width, screen.height);
|
||||||
ZoomImageTo50percent();
|
ZoomImageTo50percent();
|
||||||
ActivateWindow(GetProcessSlot(Form.ID));
|
ActivateWindow(GetProcessSlot(Form.ID));
|
||||||
//_PutImage(0, Form.cheight - preview_height, preview_width, preview_height, preview);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void EventSaveFile()
|
void EventSaveFile()
|
||||||
{
|
{
|
||||||
SaveFile(b_screen, screen.width, screen.height, "/tmp0/1/screen.png");
|
int i=0;
|
||||||
|
char save_file_name[4096];
|
||||||
|
do {
|
||||||
|
i++;
|
||||||
|
sprintf(#save_file_name, "/tmp0/1/screen_%i.png", i);
|
||||||
|
} while (file_exists(#save_file_name));
|
||||||
|
SaveFile(screenshot, screen.width, screen.height, #save_file_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SaveFile(dword _image, _w, _h, _path)
|
void SaveFile(dword _image, _w, _h, _path)
|
||||||
{
|
{
|
||||||
|
char save_success_message[4096+200];
|
||||||
dword encoded_data=0;
|
dword encoded_data=0;
|
||||||
dword encoded_size=0;
|
dword encoded_size=0;
|
||||||
dword image_ptr = 0;
|
dword image_ptr = 0;
|
||||||
@ -115,63 +142,55 @@ void SaveFile(dword _image, _w, _h, _path)
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (WriteFile(encoded_size, encoded_data, _path) == 0) {
|
if (WriteFile(encoded_size, encoded_data, _path) == 0) {
|
||||||
notify("'File saved as /rd/1/saved_image.png' -O");
|
sprintf(#save_success_message, "'File saved as %s' -O", _path);
|
||||||
|
notify(#save_success_message);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
notify("'Error saving file, probably not enought space on ramdisk!' -E");
|
notify("'Error saving file! Probably not enought space or file system is not writable!' -E");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline byte calc_rgb(dword B, item_h)
|
||||||
|
{
|
||||||
|
return calc(ESBYTE[B+3] + ESBYTE[B] + ESBYTE[B-3]
|
||||||
|
+ ESBYTE[B-item_h] + ESBYTE[B+item_h] / 5);
|
||||||
|
}
|
||||||
|
|
||||||
void ZoomImageTo50percent() {
|
void ZoomImageTo50percent() {
|
||||||
dword point_x,
|
dword point_x = 0;
|
||||||
item_h= screen.width * 3,
|
dword item_h = screen.width * 3;
|
||||||
s_off = preview + 3,
|
dword small = preview;
|
||||||
b_off = b_screen + 6,
|
dword big = screenshot;
|
||||||
b_off_r,
|
|
||||||
b_off_g,
|
|
||||||
b_off_b,
|
|
||||||
rez_r,
|
|
||||||
rez_g,
|
|
||||||
rez_b;
|
|
||||||
|
|
||||||
while( (s_off <= preview + preview_length) && (b_off <= b_screen + b_screen_length ) ) {
|
while( (small <= preview + preview_length) && (big <= screenshot + screenshot_length ) ) {
|
||||||
|
|
||||||
if (b_off <= b_screen + item_h) || (b_off >= b_screen + b_screen_length - item_h)
|
if (big <= screenshot + item_h) || (big >= screenshot + screenshot_length - item_h)
|
||||||
{
|
{
|
||||||
ESBYTE[s_off] = ESBYTE[b_off];
|
ESBYTE[small] = ESBYTE[big];
|
||||||
ESBYTE[s_off+1] = ESBYTE[b_off+1];
|
ESBYTE[small+1] = ESBYTE[big+1];
|
||||||
ESBYTE[s_off+2] = ESBYTE[b_off+2];
|
ESBYTE[small+2] = ESBYTE[big+2];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// line[x].R = (line[x+1].R + line[x].R + line[x-1].R + line1[x].R + line2[x].R) / 5;
|
ESBYTE[small] = calc_rgb(big, item_h);
|
||||||
// line[x].G = (line[x+1].G + line[x].G + line[x-1].G + line1[x].G + line2[x].G) / 5;
|
ESBYTE[small+1] = calc_rgb(big+1, item_h);
|
||||||
// line[x].B = (line[x+1].B + line[x].B + line[x-1].B + line1[x].B + line2[x].B) / 5
|
ESBYTE[small+2] = calc_rgb(big+2, item_h);
|
||||||
b_off_r = b_off;
|
|
||||||
b_off_g = b_off + 1;
|
|
||||||
b_off_b = b_off + 2;
|
|
||||||
rez_r = ESBYTE[b_off_r+3] + ESBYTE[b_off_r] + ESBYTE[b_off_r-3] + ESBYTE[b_off_r-item_h] + ESBYTE[b_off_r+item_h] / 5;
|
|
||||||
rez_g = ESBYTE[b_off_g+3] + ESBYTE[b_off_g] + ESBYTE[b_off_g-3] + ESBYTE[b_off_g-item_h] + ESBYTE[b_off_g+item_h] / 5;
|
|
||||||
rez_b = ESBYTE[b_off_b+3] + ESBYTE[b_off_b] + ESBYTE[b_off_b-3] + ESBYTE[b_off_b-item_h] + ESBYTE[b_off_b+item_h] / 5;
|
|
||||||
ESBYTE[s_off] = rez_r;
|
|
||||||
ESBYTE[s_off+1] = rez_g;
|
|
||||||
ESBYTE[s_off+2] = rez_b;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
s_off+=3;
|
small+=3;
|
||||||
b_off+=6;
|
big+=6;
|
||||||
|
|
||||||
point_x+=2;
|
point_x+=2;
|
||||||
if (point_x >= screen.width)
|
if (point_x >= screen.width)
|
||||||
{
|
{
|
||||||
b_off += item_h;
|
big += item_h;
|
||||||
point_x = 0;
|
point_x = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
stop:
|
stop:
|
||||||
|
@ -28,9 +28,9 @@ proc_info Form;
|
|||||||
#define stolbcov 10 //cell count y
|
#define stolbcov 10 //cell count y
|
||||||
|
|
||||||
#ifdef LANG_RUS
|
#ifdef LANG_RUS
|
||||||
#define LABEL_NEW_GAME "New game (F2)";
|
|
||||||
#else
|
|
||||||
#define LABEL_NEW_GAME "<22>®¢ ï ¨£à (F2)";
|
#define LABEL_NEW_GAME "<22>®¢ ï ¨£à (F2)";
|
||||||
|
#else
|
||||||
|
#define LABEL_NEW_GAME "New game (F2)";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int bitstat[60], bitpict[60];
|
int bitstat[60], bitpict[60];
|
||||||
|
Loading…
Reference in New Issue
Block a user