2010-10-17 21:50:55 +02:00
|
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
|
int cmd_more(char file[]) {
|
|
|
|
|
|
|
|
|
|
kol_struct70 k70;
|
|
|
|
|
kol_struct_BDVK bdvk;
|
|
|
|
|
unsigned result, i;
|
|
|
|
|
unsigned long long filesize, pos;
|
|
|
|
|
char buf[81]; //<2F><><EFBFBD><EFBFBD>
|
|
|
|
|
char temp[FILENAME_MAX];
|
|
|
|
|
unsigned flags;
|
|
|
|
|
|
|
|
|
|
if (strlen(file)<1) {
|
|
|
|
|
printf (CMD_MORE_USAGE);
|
|
|
|
|
return TRUE;
|
2012-04-16 12:40:07 +02:00
|
|
|
|
}
|
2010-10-17 21:50:55 +02:00
|
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
|
if ( '/' == file[0])
|
2010-10-17 21:50:55 +02:00
|
|
|
|
{
|
2021-06-12 23:34:41 +02:00
|
|
|
|
strcpy(temp, file);
|
|
|
|
|
|
|
|
|
|
if ( !file_check(temp) )
|
|
|
|
|
{
|
|
|
|
|
file_not_found(file);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
2010-10-17 21:50:55 +02:00
|
|
|
|
}
|
2021-06-12 23:34:41 +02:00
|
|
|
|
else
|
2010-10-17 21:50:55 +02:00
|
|
|
|
{
|
2021-06-12 23:34:41 +02:00
|
|
|
|
strcpy(temp, cur_dir);
|
|
|
|
|
if (temp[strlen(temp)-1] != '/')
|
|
|
|
|
strcat(temp, "/"); // add slash
|
|
|
|
|
strcat(temp, file);
|
|
|
|
|
|
|
|
|
|
if ( !file_check(temp) )
|
|
|
|
|
{
|
|
|
|
|
file_not_found(file);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
2010-10-17 21:50:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
|
k70.p00 = 5;
|
|
|
|
|
k70.p04 = k70.p12 = 0;
|
|
|
|
|
//k70.p08 = 0;
|
|
|
|
|
k70.p16 = (unsigned) &bdvk;
|
|
|
|
|
k70.p20 = 0;
|
|
|
|
|
k70.p21 = temp;
|
2010-10-17 21:50:55 +02:00
|
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
|
result = kol_file_70(&k70); // <20><><EFBFBD><EFBFBD>砥<EFBFBD> <20><><EFBFBD>ଠ<EFBFBD><E0ACA0> <20> 䠩<><E4A0A9>
|
|
|
|
|
if ( 0 != result )
|
|
|
|
|
return FALSE;
|
2010-10-17 21:50:55 +02:00
|
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
|
filesize = bdvk.p32; // <20><><EFBFBD><EFBFBD>砥<EFBFBD> ࠧ<><E0A0A7><EFBFBD> 䠩<><E4A0A9>
|
2010-10-17 21:50:55 +02:00
|
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
|
buf[80]=0;
|
|
|
|
|
flags = con_get_flags();
|
2010-10-17 21:50:55 +02:00
|
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
|
for (pos=0;pos<filesize;pos+=80)
|
2010-10-17 21:50:55 +02:00
|
|
|
|
{
|
|
|
|
|
|
2021-06-12 23:34:41 +02:00
|
|
|
|
memset(buf, 0, 80);
|
|
|
|
|
|
|
|
|
|
k70.p00 = 0;
|
|
|
|
|
k70.p04 = pos;
|
|
|
|
|
// k70.p08 = 0; // bug for over 4Gb files, but "more" is unusable there
|
|
|
|
|
k70.p12 = 80;
|
|
|
|
|
k70.p16 = (unsigned) buf;
|
|
|
|
|
k70.p20 = 0;
|
|
|
|
|
k70.p21 = temp;
|
|
|
|
|
|
|
|
|
|
result = kol_file_70(&k70); // <20>⥭<EFBFBD><E2A5AD> 80 ᨬ<><E1A8AC><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
for (i=0; i<80; i++)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if (27 == buf[i])
|
|
|
|
|
con_set_flags(flags|0x100);
|
|
|
|
|
else con_set_flags(flags);
|
|
|
|
|
|
|
|
|
|
printf ("%c", buf[i]);
|
|
|
|
|
}
|
|
|
|
|
if ( 0 != result )
|
|
|
|
|
{
|
|
|
|
|
con_set_flags(flags);
|
|
|
|
|
printf ("\n\r");
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
2010-10-17 21:50:55 +02:00
|
|
|
|
|
|
|
|
|
}
|
2021-06-12 23:34:41 +02:00
|
|
|
|
con_set_flags(flags);
|
|
|
|
|
printf ("\n\r");
|
|
|
|
|
return TRUE;
|
2010-10-17 21:50:55 +02:00
|
|
|
|
}
|
2013-02-17 16:22:51 +01:00
|
|
|
|
|