Page 65 of 262

Re: What does your OS look like? (Screen Shots..)

Posted: Sat Dec 25, 2010 1:02 pm
by ecco
Lol that's part of the
ecco wrote:few issues due to my hacktastic VT100 emulation
That's as close as I could get it in the time I had available before heading out of town for Christmas. I'll probably work on it some more when I get back...

Re: What does your OS look like? (Screen Shots..)

Posted: Mon Dec 27, 2010 5:15 am
by melgmry0101b
death2all wrote:One thing I have to ask though, on that first screeny you posted, is that a progress bar, or just a pretty graphic?
Yes that is a text mode progress bar that adds some blocks after some OS loading events. :D

Re: What does your OS look like? (Screen Shots..)

Posted: Mon Dec 27, 2010 5:53 am
by CWood
Thats one thing I've always wondered how to do: how do you exactly calculate the timings/percentages etc? Care to share a bit of code with us? Loving it! Very well done =D>

Re: What does your OS look like? (Screen Shots..)

Posted: Mon Dec 27, 2010 9:02 am
by bergen110
Hello,

This is my OS this morning.
It is booted by GRUB and look what the CPU vendor is.
Thats the only thing it can do by now.
Im started writing yesterday afternoon
Screen:

Image

Re: What does your OS look like? (Screen Shots..)

Posted: Mon Dec 27, 2010 11:25 am
by melgmry0101b
death2all wrote:Thats one thing I've always wondered how to do: how do you exactly calculate the timings/percentages etc? Care to share a bit of code with us? Loving it! Very well done
That is a closed source OS but i can tell you how
i have printed a character after some OS events like "Printf(".");"

Re: What does your OS look like? (Screen Shots..)

Posted: Mon Dec 27, 2010 5:04 pm
by dak91
Testing the gui system with mouse support:
Image

The number on topright isn't fps count

Re: What does your OS look like? (Screen Shots..)

Posted: Mon Dec 27, 2010 5:38 pm
by bergen110
Hello,
This is PointerOS (again) a few minutes ago
It shows some boot information and a improved CPUID

Image

Re: What does your OS look like? (Screen Shots..)

Posted: Tue Dec 28, 2010 1:39 am
by fatih

Re: What does your OS look like? (Screen Shots..)

Posted: Fri Dec 31, 2010 11:33 am
by Coty
@Fatih: Nice, and in ASM to, I am impressed =D>

Re: What does your OS look like? (Screen Shots..)

Posted: Fri Dec 31, 2010 2:28 pm
by fatih
thanks Coddy for appreciate :)

Re: What does your OS look like? (Screen Shots..)

Posted: Sat Jan 01, 2011 5:35 pm
by Synon
Edit: Sorry for derailing :S
Feel free to move this to another thread or anything.
death2all wrote:Thats one thing I've always wondered how to do: how do you exactly calculate the timings/percentages etc? Care to share a bit of code with us? Loving it! Very well done =D>
I wrote one a while ago which I have since lost. I'll go through how it worked.

There was a struct that looked a little like this:

Code: Select all

struct splash {
        const char* action;
        init_function func;
};
then a function, int splash(struct splash* actions), which you would call something like this:

Code: Select all

struct splash actions[] = {
        { "Load Global Descriptor Table", gdt_init },
        { "Load Interrupt Descriptor Table", idt_init },
        { "Enable Paging", paging_init },
        { NULL, NULL, }
};

splash(actions);
It would count the number of actions in the list, figure out the current percentage based on which item it was doing and how many actions were left, then it would draw a bar in roughly the middle of the screen, with the percentage drawn in the middle, and write the string "action" underneath the bar. I think I also had a "struct splash_screen" that described how to draw the splash screen itself but I don't remember.

I'm going to write this again, it was fun, but I never got to test it.

Re: What does your OS look like? (Screen Shots..)

Posted: Sun Jan 02, 2011 6:19 am
by CWood
Suddenly it all makes sense. Thank you. I will get started on this as soon as I have done some debugging (which may take a while) and finished the rewrite of the shell into the message loop structure (should have done that first I guess. bad design considerations cost a lot of time :S). Thanks Synon xD

Re: What does your OS look like? (Screen Shots..)

Posted: Sun Jan 02, 2011 7:44 am
by Synon
death2all wrote:Suddenly it all makes sense. Thank you. I will get started on this as soon as I have done some debugging (which may take a while) and finished the rewrite of the shell into the message loop structure (should have done that first I guess. bad design considerations cost a lot of time :S). Thanks Synon xD
You're welcome :)

Re: What does your OS look like? (Screen Shots..)

Posted: Sun Jan 09, 2011 5:45 am
by Karlosoft
The current status of my os. Next step is the gui.

Re: What does your OS look like? (Screen Shots..)

Posted: Fri Jan 14, 2011 6:56 pm
by digo_rp
Hi all, I just post to show my operating ;-D