2012-11-26 16:26:15 +01:00
|
|
|
|
#include "..\lib\figures.h"
|
|
|
|
|
#include "..\lib\mem.h"
|
|
|
|
|
#include "..\lib\dll.h"
|
|
|
|
|
#include "..\lib\edit_box_lib.h"
|
|
|
|
|
|
|
|
|
|
#ifdef LANG_RUS
|
|
|
|
|
unsigned char *but_text[]={
|
2012-12-22 23:05:31 +01:00
|
|
|
|
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> [F2]",
|
|
|
|
|
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> [Del]",
|
|
|
|
|
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> [Ctrl+Enter]",
|
2012-11-26 16:26:15 +01:00
|
|
|
|
0};
|
|
|
|
|
|
2012-12-22 23:05:31 +01:00
|
|
|
|
?define INTRO_TEXT_1 "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>㤥<EFBFBD> <20>⮡ࠦ<E2AEA1><E0A0A6><EFBFBD><EFBFBD><EFBFBD> ᯨ᮪"
|
|
|
|
|
?define INTRO_TEXT_2 "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>㠫<EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20> <20><><EFBFBD>⥬<EFBFBD>."
|
|
|
|
|
?define INTRO_TEXT_3 "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>..."
|
2012-11-26 16:26:15 +01:00
|
|
|
|
|
2012-12-22 23:05:31 +01:00
|
|
|
|
?define NOTIFY_TEXT_NO_DISK "<EFBFBD><EFBFBD><EFBFBD> <20><>砫<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>"
|
|
|
|
|
?define NOTIFY_TEXT_DISK_LIMIT "<EFBFBD><EFBFBD><EFBFBD>⨣<EFBFBD><EFBFBD><EFBFBD> <20>।<EFBFBD><E0A5A4> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>⢠ <20><><EFBFBD><EFBFBD>㠫<EFBFBD><E3A0AB><EFBFBD><EFBFBD> <20><><EFBFBD>"
|
2012-11-26 16:26:15 +01:00
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
unsigned char *but_text[]={
|
|
|
|
|
"Add disk [F2]",
|
|
|
|
|
"Delete disk [Del]",
|
|
|
|
|
"Add [Ctrl+Enter]",
|
|
|
|
|
0};
|
|
|
|
|
|
|
|
|
|
?define INTRO_TEXT_1 " There will be list of mounted"
|
|
|
|
|
?define INTRO_TEXT_2 " virtual disks."
|
|
|
|
|
?define INTRO_TEXT_3 " Try to add one..."
|
|
|
|
|
|
|
|
|
|
?define NOTIFY_TEXT_NO_DISK "You need to have at least one disk"
|
|
|
|
|
?define NOTIFY_TEXT_DISK_LIMIT "Reached the limit of the number of virtual disks"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
struct path_string { unsigned char Item[256]; };
|
|
|
|
|
path_string disk_list[40];
|
|
|
|
|
|
|
|
|
|
dword devbuf;
|
|
|
|
|
int disk_num;
|
|
|
|
|
int selected;
|
|
|
|
|
|
|
|
|
|
system_colors sc;
|
|
|
|
|
proc_info Form;
|
|
|
|
|
|
|
|
|
|
int mouse_dd;
|
|
|
|
|
unsigned char dsize[30];
|
|
|
|
|
edit_box edit1= {40,20,200,0xffffff,0x94AECE,0x94AECE,0x94AECE,0,4,#dsize,#mouse_dd,100000000000010b};
|
|
|
|
|
|
|
|
|
|
unsigned char icons[14*56] = FROM "icons.raw";
|
2013-03-01 14:00:21 +01:00
|
|
|
|
#define TOPPANELH 30
|
|
|
|
|
#define BOTPANELH 20
|
2012-11-26 16:26:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Main_Window()
|
|
|
|
|
{
|
2013-03-01 14:00:21 +01:00
|
|
|
|
unsigned int id, key, err;
|
|
|
|
|
int i, x;
|
2012-11-26 16:26:15 +01:00
|
|
|
|
|
|
|
|
|
mem_Init();
|
|
|
|
|
if (load_dll2(boxlib, #edit_box_draw,0)!=0)
|
|
|
|
|
{
|
|
|
|
|
notify("error: library doesn't exists /rd/1/lib/box_lib.obj");
|
|
|
|
|
ExitProcess();
|
|
|
|
|
}
|
|
|
|
|
SetEventMask(0x27);
|
|
|
|
|
loop()
|
|
|
|
|
{
|
|
|
|
|
switch(WaitEvent())
|
|
|
|
|
{
|
|
|
|
|
case evMouse:
|
|
|
|
|
//edit_box_mouse stdcall (#edit1);
|
|
|
|
|
break;
|
|
|
|
|
case evButton:
|
|
|
|
|
id=GetButtonID();
|
|
|
|
|
if (id==1) ExitProcess();
|
|
|
|
|
if (id==10) AddDisk();
|
|
|
|
|
if (id==11) //del
|
|
|
|
|
{
|
|
|
|
|
_DEL_DISK:
|
|
|
|
|
if (disk_num==0)
|
|
|
|
|
{
|
|
|
|
|
notify(NOTIFY_TEXT_NO_DISK);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
param[0]='d';
|
|
|
|
|
param[1]=disk_list[selected].Item[3];
|
2013-03-01 14:00:21 +01:00
|
|
|
|
err = Console_Work();
|
|
|
|
|
if ((err!=0) && (err<7)) notify(rezult_text[err]);
|
2012-12-06 08:49:06 +01:00
|
|
|
|
pause(15);
|
2012-11-26 16:26:15 +01:00
|
|
|
|
GetDisks();
|
|
|
|
|
DrawTmpDisks();
|
|
|
|
|
}
|
|
|
|
|
if (id>=20)
|
|
|
|
|
{
|
|
|
|
|
if (selected==id-20) OpenTmpDisk();
|
|
|
|
|
selected=id-20;
|
|
|
|
|
DrawTmpDisks();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case evKey:
|
|
|
|
|
key = GetKey();
|
|
|
|
|
if (key==182) if (disk_num<>0) goto _DEL_DISK;
|
|
|
|
|
if (key==51) AddDisk();
|
|
|
|
|
if (key==13) OpenTmpDisk();
|
|
|
|
|
if (key==178)
|
|
|
|
|
{
|
|
|
|
|
if (selected==0) break;
|
|
|
|
|
selected--;
|
|
|
|
|
DrawTmpDisks();
|
|
|
|
|
}
|
|
|
|
|
if (key==177)
|
|
|
|
|
{
|
|
|
|
|
if (selected+2>disk_num) break;
|
|
|
|
|
selected++;
|
|
|
|
|
DrawTmpDisks();
|
|
|
|
|
}
|
|
|
|
|
if (key==176)
|
|
|
|
|
{
|
|
|
|
|
if (selected<3) break;
|
|
|
|
|
selected-=3;
|
|
|
|
|
DrawTmpDisks();
|
|
|
|
|
}
|
|
|
|
|
if (key==179)
|
|
|
|
|
{
|
|
|
|
|
if (selected+4>disk_num) break;
|
|
|
|
|
selected+=3;
|
|
|
|
|
DrawTmpDisks();
|
|
|
|
|
}
|
|
|
|
|
//EAX=key<<8;
|
|
|
|
|
//edit_box_key stdcall(#edit1);
|
|
|
|
|
break;
|
2013-03-01 14:00:21 +01:00
|
|
|
|
case evReDraw:
|
|
|
|
|
sc.get();
|
|
|
|
|
DefineAndDrawWindow(170,150,314,250,0x74,sc.work,"Virtual Disk Manager 0.45",0);
|
|
|
|
|
GetProcessInfo(#Form, SelfInfo);
|
|
|
|
|
if (Form.status_window>2) return;
|
|
|
|
|
|
|
|
|
|
DrawBar(0,0, Form.cwidth,TOPPANELH, sc.work);
|
|
|
|
|
DrawBar(0,TOPPANELH, Form.cwidth,1, sc.work_graph);
|
|
|
|
|
x=6;
|
|
|
|
|
for (i=0; i<2; i++)
|
|
|
|
|
{
|
|
|
|
|
DefineButton(x,5, strlen(but_text[i])*6+28,19, 10+i, sc.work_button);
|
|
|
|
|
_PutImage(x+3,8, 14,14, i*14*14*3+#icons);
|
|
|
|
|
WriteText(x+22,11, 0x80, sc.work_button_text, but_text[i]);
|
|
|
|
|
x+=strlen(but_text[i])*6+37;
|
|
|
|
|
}
|
|
|
|
|
GetDisks();
|
|
|
|
|
DrawTmpDisks();
|
2012-11-26 16:26:15 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void OpenTmpDisk()
|
|
|
|
|
{
|
|
|
|
|
unsigned char eol_param[256];
|
|
|
|
|
if (!disk_num) return;
|
|
|
|
|
strcpy(#eol_param, "/tmp#/1/");
|
|
|
|
|
eol_param[4]=disk_list[selected].Item[3];
|
|
|
|
|
RunProgram("/sys/File managers/Eolite", #eol_param);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GetDisks()
|
|
|
|
|
{
|
|
|
|
|
unsigned int j, fcount=30;
|
|
|
|
|
unsigned char disk_name[256];
|
|
|
|
|
|
|
|
|
|
mem_Free(devbuf);
|
|
|
|
|
devbuf= mem_Alloc(32);
|
|
|
|
|
ReadDir(0, devbuf, "/");
|
|
|
|
|
fcount=ESDWORD[devbuf+8];
|
|
|
|
|
mem_Free(devbuf);
|
|
|
|
|
devbuf = mem_Alloc(fcount+1*304+32);
|
|
|
|
|
ReadDir(fcount, devbuf, "/");
|
|
|
|
|
|
|
|
|
|
disk_num=0;
|
|
|
|
|
for (j=0; j<fcount; j++;)
|
|
|
|
|
{
|
|
|
|
|
strcpy(#disk_name, j*304+devbuf+72);
|
|
|
|
|
if (disk_name[0]!='t') continue;
|
|
|
|
|
strcpy(#disk_list[disk_num].Item, #disk_name);
|
|
|
|
|
disk_num++;
|
|
|
|
|
}
|
|
|
|
|
if (disk_num>12) disk_num=12;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
unsigned int disk_pos_x[]={13,13,13,83,83,83,153,153,153,223,223,223};
|
|
|
|
|
unsigned int disk_pos_y[]={40,65,90,40,65,90,40,65,90,40,65,90};
|
|
|
|
|
|
|
|
|
|
void DrawTmpDisks()
|
|
|
|
|
{
|
|
|
|
|
int i;
|
2013-03-01 14:00:21 +01:00
|
|
|
|
DrawBar(0,31, Form.cwidth,Form.cheight-TOPPANELH-BOTPANELH-2, 0xFFFFFF);
|
|
|
|
|
DrawBar(0,Form.cheight-BOTPANELH-1, Form.cwidth,1, sc.work_graph);
|
|
|
|
|
DrawBar(0,Form.cheight-BOTPANELH, Form.cwidth,BOTPANELH, sc.work);
|
|
|
|
|
WriteText(10, Form.cheight-13, 0x80, sc.work_text, "Free RAM size:");
|
|
|
|
|
WriteText(100, Form.cheight-13, 0x80, sc.work_text, itoa(GetFreeRAM()/2048));
|
|
|
|
|
WriteText(strlen(itoa(GetFreeRAM()/2048))*6 + 100, Form.cheight-13, 0x80, sc.work_text, " MB");
|
2012-11-26 16:26:15 +01:00
|
|
|
|
if (disk_num==0)
|
|
|
|
|
{
|
2012-12-15 01:16:06 +01:00
|
|
|
|
WriteText(17,45, 0x90, 0x777777, INTRO_TEXT_1);
|
|
|
|
|
WriteText(17,45+15, 0x90, 0x777777, INTRO_TEXT_2);
|
|
|
|
|
WriteText(17,45+42, 0x90, 0x777777, INTRO_TEXT_3);
|
2012-11-26 16:26:15 +01:00
|
|
|
|
return;
|
|
|
|
|
};
|
2013-03-01 14:00:21 +01:00
|
|
|
|
if (selected>=disk_num) selected=disk_num-1; //restore selected
|
2012-11-26 16:26:15 +01:00
|
|
|
|
for (i=0; i<10; i++) DeleteButton(20+i);
|
|
|
|
|
for (i=0; i<disk_num; i++)
|
|
|
|
|
{
|
|
|
|
|
DefineButton(disk_pos_x[i], disk_pos_y[i], 60, 20, 20+i, 0xFFFfff);
|
2012-12-15 01:16:06 +01:00
|
|
|
|
WriteText(disk_pos_x[i]+25,disk_pos_y[i]+6, 0x90, 0, #disk_list[i].Item);
|
2012-11-26 16:26:15 +01:00
|
|
|
|
_PutImage(disk_pos_x[i]+5,disk_pos_y[i]+4, 14,14, 3*14*14*3+#icons);
|
|
|
|
|
if (selected==i) DrawRectangle(disk_pos_x[i], disk_pos_y[i], 60-1, 20-1, 0x00459A);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AddDisk()
|
|
|
|
|
{
|
2013-03-01 14:00:21 +01:00
|
|
|
|
unsigned int i, j, err;
|
2012-11-26 16:26:15 +01:00
|
|
|
|
if (disk_num>=10)
|
|
|
|
|
{
|
|
|
|
|
notify(NOTIFY_TEXT_DISK_LIMIT);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
param[0]='a';
|
|
|
|
|
for (i=0; i<9; i++)
|
|
|
|
|
{
|
|
|
|
|
for (j=0; j<=disk_num; j++)
|
|
|
|
|
{
|
|
|
|
|
if (i+48==disk_list[j].Item[3]) continue 1;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
param[1]=i+48;
|
2013-03-01 14:00:21 +01:00
|
|
|
|
err = Console_Work();
|
|
|
|
|
if ((err!=0) && (err<7)) notify(rezult_text[err]);
|
2012-12-06 08:49:06 +01:00
|
|
|
|
pause(5);
|
2012-11-26 16:26:15 +01:00
|
|
|
|
GetDisks();
|
|
|
|
|
DrawTmpDisks();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|