/*******************************************************************************/ /* COS2000 - Compatible Operating System - LGPL v3 - Hordé Nicolas */ /* */ #include "vga.h" #include "3d.h" #include "matrix.h" #include "video.h" #include "interrupts.h" #include "asm.h" #include "cpu.h" #include "string.h" #include "gdt.h" #include "shell.h" #include "multiboot2.h" #include "math.h" #include "debug.h" #include "VGA/ansi.c" #include "3D/sphere.c" static command commands[] = { {"reboot" , "", &rebootnow}, {"clear" , "", &clear}, {"mode" , "", &mode}, {"detectcpu" , "", &detectcpu}, {"test2d" , "", &test2d}, {"regs" , "", ®s}, {"gdt" , "", &readgdt}, {"idt" , "", &readidt}, {"info" , "", &info}, {"err" , "", &err}, {"test" , "", &test}, {"view" , "", &view}, {"disasm" , "", &disas}, {"bpset" , "", &bpset}, {"bpclr" , "", &bpclr}, {"help" , "", &help}, {"logo" , "", &logo}, {"font" , "", &sfont}, {"test3d" , "", &test3d}, }; /*******************************************************************************/ /* Shell, traite les commandes */ void shell() { static u8 field[] = " \000"; static u8 item[] = " \000"; int i; bool found; while (true) { print("\r\n# "); getstring(&field); print("\r\n"); if (strgetnbitems(&field, ' ') < 1) continue; strgetitem(&field, &item, ' ', 0); strtolower(&item); found = false; for (i = 0; i < sizeof(commands)/sizeof(commands[0]); i++) { if (strcmp(&item, &commands[i].name) == 0) { (*commands[i].function) (&field); found = true; break; } } if (!found) printf("Commande inconnue !\r\n\000"); } } int test(void) { print("Fonction de test !\r\n"); return; } /*******************************************************************************/ /* Change la police courante */ int sfont(u8* commandline) { if (strgetnbitems(commandline, ' ') < 2) { print("Syntaxe de la commande FONT\r\nfont \33[32mpolice\r\n\r\n \33[32mpolice\33[0m\33[0m\33[25D\33[10C - \33[Nom de la police de caractere\r\n"); return; } setfont(strgetpointeritem(commandline, ' ', 1)); } /*******************************************************************************/ /* Affiche le logo */ int logo() { print(ansilogo); return; } /*******************************************************************************/ /* Renvoie les commandes disponibles */ int help() { print("Commandes disponibles :\r\n\r\n"); for(u32 i=0;i3) { print("numero incorrect"); return; } strgetitem(commandline, &arg, ' ', 2); pointer=strtoint(&arg); if (strgetnbitems(commandline, ' ') == 4) { strgetitem(commandline, &arg, ' ', 3); type=strtoint(&arg); } if (type>DBG_READWRITE) { print("type incorrect"); return; } setdebugreg(numero,pointer,type); } /*******************************************************************************/ /* Retire un breakpoint */ int bpclr(u8* commandline) { u8 arg[] = " \000"; u8* numero; if (strgetnbitems(commandline, ' ') < 2) { print("Syntaxe de la commande BPCLR\r\nbpclr \33[32mnumero\r\n\r\n \33[32mnumero\33[0m\33[0m\33[25D\33[10C - numero du breakpoint (0-3)\r\n"); return; } strgetitem(commandline, &arg, ' ', 1); numero=strtoint(&arg); if (numero>3) { print("numero incorrect"); return; } setdebugreg(numero,0x0,DBG_CLEAR); } /*******************************************************************************/ /* Desassemble une zone de mémoire donnée */ int disas(u8* commandline) { u8 arg[] = " \000"; u8* size; u8* pointer; if (strgetnbitems(commandline, ' ') < 3) { print("Syntaxe de la commande DISASM\r\ndisasm \33[32madresse taille\r\n\r\n \33[32madresse\33[0m\33[0m\33[25D\33[10C - Adresse a visualiser\r\n \33[32mtaille\33[0m\33[25D\33[10C - nombre d'octets a desassembler <256\r\n"); return; } strgetitem(commandline, &arg, ' ', 1); pointer=strtoint(&arg); size=pointer; strgetitem(commandline, &arg, ' ', 2); size+=strtoint(&arg); while(pointer50) { print("Creation d'une erreur de page en ecriture !\r\n"); asm("movl $0x66666666,(0xE0000000)"); } else { print("Creation d'une erreur de page en lecture !\r\n"); asm("movl (0xD0000000),%eax"); } break; case 15: print("NON GERE!\r\n"); break; case 16: print("NON GERE!\r\n"); break; case 17: print("NON GERE!\r\n"); break; case 18: print("NON GERE!\r\n"); break; default: print("Exception qui n'existe pas !!!\r\n"); break; } return 0; } /*******************************************************************************/ /* Information sur le démarrage */ int info() { getbootinfo(); return 0; } /*******************************************************************************/ /* Affiche les registres */ int regs() { save_stack dump; show_cpu(&dump); return 0; } /*******************************************************************************/ /* Change le mode */ int mode(u8* commandline) { u8 arg[] = " \000"; u32 argint; if (strgetnbitems(commandline, ' ') < 2) { print("Syntaxe de la commande MODE\r\nmode \33[32mmodevideo\r\n\r\n modevideo\33[0m\33[25D\33[10C - mode video a initialiser (>0x80 = graphique)\r\n"); return; } strgetitem(commandline, &arg, ' ', 1); argint=strtoint(&arg); changemode(argint); return 0; } /*******************************************************************************/ /* Efface l'écran */ int clear() { clearscreen(); return 0; } /*******************************************************************************/ /* Redemarre */ int rebootnow() { print(""); waitascii(); reboot(); return 0; } /*******************************************************************************/ /* Teste les fonctionnalités 3D */ int test3d() { videoinfos *vinfo=getvideo_info(); if (!vinfo->isgraphic) { print("Mode graphique necessaire afin de lancer ce programme\r\n"); return 1; } model3d model; load3ds(&sphere, sizeof(sphere), &model); vector4 list3d[8]; vertex2d list2d[8]; matrix44 rotatex,rotatey,rotatez,mrotatex,mrotatey,mrotatez; matrix44* transformation; matrix44_rotation_x(0.1f, &rotatex); matrix44_rotation_y(0.1f, &rotatey); matrix44_rotation_z(0.1f, &rotatez); matrix44_rotation_x(-0.1f, &mrotatex); matrix44_rotation_y(-0.1f, &mrotatey); matrix44_rotation_z(-0.1f, &mrotatez); vector4 origin={0.0f,0.0f,0.0f,0.0f}; vector4 cubeorigin={0.0f,0.0f,0.0f,0.0f}; origin.x=vinfo->currentwidth/2.0f; origin.y=vinfo->currentheight/2.0f; origin.z=70.0f; cube(&list3d, &cubeorigin, 35.0f); u8 achar=' '; u8 i; while(achar!='a') { clearscreen(); proj(&list3d, &list2d, &origin, 8, 100.0f); for (i = 0; i < 8; i++) { v_writepxl(&list2d[i], egatorgb(4)); } achar=waitascii(); switch(achar) { case 17: transformation=&rotatex; break; case 18: transformation=&mrotatex; break; case 19: transformation=&rotatey; break; case 20: transformation=&mrotatey; break; case 2: transformation=&rotatez; break; case 3: transformation=&mrotatez; break; } for (i = 0; i < 8; i++) { matrix44_transform(transformation, &list3d[i]); } } return 0; } /*******************************************************************************/ /* Teste les fonctionnalités 2D graphiques */ int test2d() { videoinfos *vinfo=getvideo_info(); if (!vinfo->isgraphic) { print("Mode graphique necessaire afin de lancer ce programme\r\n"); return 1; } struct vertex2d a, b, c; randomize(); u32 color; for (int i = 0; i < 2000; i++) { a.x = random(0, vinfo->currentwidth); a.y = random(0, vinfo->currentheight); b.x = random(0, vinfo->currentwidth); b.y = random(0, vinfo->currentheight); if (vinfo->currentdepth>24) color=egatorgb(random(0,16)); else if (vinfo->currentdepth==8) color=random(0,63); else color=random(0,16); v_line(&a,&b,color); } waitascii(); for (int i = 0; i < 2000; i++) { a.x = random(0, vinfo->currentwidth); a.y = random(0, vinfo->currentheight); b.x = random(0, vinfo->currentwidth); b.y = random(0, vinfo->currentheight); c.x = random(0, vinfo->currentwidth); c.y = random(0, vinfo->currentheight); if (vinfo->currentdepth>24) color=egatorgb(random(0,16)); else if (vinfo->currentdepth==8) color=random(0,63); else color=random(0,16); trianglefilled(&a, &b, &c, color); triangle(&a, &b, &c, egatorgb(4)); } return 0; } /*******************************************************************************/ /* Lit l'IDT et l'affiche */ int readidt() { u32 index, i = 0; idtdes *desc; struct idtr idtreg; sidt(&idtreg); printf("Information sur l'IDT\r\nAdresse:%X Limite:%hX\r\n", idtreg.base, (u32) idtreg.limite); desc = idtreg.base; for (index = 0; index < idtreg.limite / sizeof(idtdes); index++) { u32 select = desc[index].select; u32 offset = desc[index].offset0_15 + (desc[index].offset16_31 << 16); u32 type = desc[index].type & 0x0F00; u8 *typestr1, *typestr2; if (i>=32 & i<=39) typestr1="IRQ master"; else if (i>=96 & i<=103) typestr1="IRQ slave "; else if (i<19) typestr1="EXCEPTION "; else typestr1="INTERRUPT "; if (type == INTGATE) typestr2="INTGATE"; else if (type == TRAPGATE) typestr2="TRAPGATE"; else if (type == TASKGATE) typestr2="TASKGATE"; else if (type == CALLGATE) typestr2="CALLGATE"; else if (type == LDTDES) typestr2="LDTDES"; else print("inconnu"); printf("%s % hu %hY:%Y - %s\r\n", typestr1, i++, select, offset, typestr2); if (i % 32 == 0) { print("\r\n\r\n"); waitascii(); } } return 0; } /*******************************************************************************/ /* Lit les descripteurs GDT et les affiche */ int readgdt() { u32 index; struct gdtr gdtreg; sgdt(&gdtreg); printf("Information sur la GDT\r\nAdresse:%X Limite:%hX\r\n", gdtreg.base, gdtreg.limite); for (index = 0; index < gdtreg.limite ; index+=sizeof(gdtdes)) { if (!isdesvalid(index)) printf("\033[31m"); printf("SEL =%hY %Y %Y DPL=%d %cS%d [%c%c%c] %h ub\033[0m\r\n",index,getdesbase(index),getdeslimit(index),getdesdpl(index),getdestype(index),getdessize(index),getdesbit3(index),getdesbit2(index),getdesbit1(index),getdesalign(index)); } return 0; } /*******************************************************************************/ /* Detecte et affiche les information sur le CPU */ int detectcpu() { cpuinfo cpu; u8 noproc[] = "\033[31mInconnu\033[0m\000"; strcpy(&noproc, &cpu.detectedname); getcpuinfos(&cpu); printf ("\r\nDetection du processeur\r\033[1m Revision \t:%d\r Modele \t:%d\r Famille \t:%d\r Nom cpuid\t:%s\rJeux d'instruction\t:%s\033[0m\r\n\000", cpu.stepping, cpu.models, cpu.family, &cpu.detectedname, &cpu.techs); return 0; } /*******************************************************************************/