X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/502a6f92fd7acf3c942a92b41bf0ed788a128515..db30ec34669e71266f038fcf7cb2386fa210d531:/emufs_gui/viewer.c diff --git a/emufs_gui/viewer.c b/emufs_gui/viewer.c index f1c2c6d..10bcff6 100644 --- a/emufs_gui/viewer.c +++ b/emufs_gui/viewer.c @@ -247,17 +247,14 @@ void ver_bloques(WINDOW *padre, int w, int h, int cual) /* Imprimo los registros */ if (data) { - offset = scroll*actual_ancho; /* Cantidad de caracteres que tengo que saltar */ - pos = pos_actual - offset; /* Cantidad de caracteres que hay antes de mi a imprimir */ + offset = scroll*actual_ancho; + pos = pos_actual - offset; mvwaddnstr(actual[1], 0, 0, data+offset, pos); - if (pos > 0) - offset += pos; - else - offset -= pos; + offset += pos; wattron(actual[1], A_BOLD); - waddnstr(actual[1], data+offset, ancho_registro+((pos<0)?pos:0)); + waddnstr(actual[1], data+offset, ancho_registro); wattroff(actual[1], A_BOLD); - offset += ancho_registro+((pos<0)?pos:0); + offset += ancho_registro; waddnstr(actual[1], data+offset, size-offset); } @@ -305,7 +302,7 @@ void ver_registros(WINDOW *padre, int w, int h, int cual) procesar = procesar_registro_tipo1; break; case T2: - waddstr(padre, "Registro variable con sin bloques."); + waddstr(padre, "Registro variable sin bloques."); procesar = procesar_registro_tipo2; break; case T3: @@ -389,6 +386,7 @@ void ver_registros(WINDOW *padre, int w, int h, int cual) break; case 'g': case 'G': + if (cual == 2) break; if (cual == 0) art_agregar(NULL); else @@ -407,6 +405,7 @@ void ver_registros(WINDOW *padre, int w, int h, int cual) break; case 'M': case 'm': /* Quiero editar !!! */ + if (cual == 2) break; sprintf(codigo, "%lu", indices[indices_actual]); if (cual == 0) art_modificar(codigo); @@ -693,14 +692,16 @@ char *procesar_registro_tipo2(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int * memset(salida, '.', *size); PERR("Voy por el espacio antes"); +#ifdef DEBUG fprintf(stderr, "Pos Inicial %d\n", *pos_actual); +#endif + tmp = salida; + in = ptr; for(i=0; i < *pos_actual; i++) { - /* Los datos que tengo por ahora los pongo enmascarados! */ - copy_char(&salida[i], in); + copy_char(tmp, in); in++; + tmp++; } - tmp = salida + *pos_actual; - in = ptr + *pos_actual; PERR("Voy por el header"); /* ID de registro */ @@ -721,6 +722,11 @@ char *procesar_registro_tipo2(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int * i++; } PERR("Voy por el espacio despues"); + for(i=0; i < 100-*pos_actual; i++) { + copy_char(tmp, in); + in++; + tmp++; + } free(ptr); PERR("LISTO");