OSDev.org

The Place to Start for Operating System Developers
It is currently Fri Apr 19, 2024 3:40 am

All times are UTC - 6 hours




Post new topic Reply to topic  [ 3898 posts ]  Go to page Previous  1 ... 62, 63, 64, 65, 66, 67, 68 ... 260  Next
Author Message
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Dec 25, 2010 1:02 pm 
Offline

Joined: Mon Nov 29, 2010 1:21 am
Posts: 19
Location: Anchorage, AK
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...


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Mon Dec 27, 2010 5:15 am 
Offline
Member
Member

Joined: Wed Nov 10, 2010 10:49 am
Posts: 109
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


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Mon Dec 27, 2010 5:53 am 
Offline
Member
Member

Joined: Sun Jun 20, 2010 1:21 pm
Posts: 127
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>


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Mon Dec 27, 2010 9:02 am 
Offline

Joined: Sun May 02, 2010 3:56 am
Posts: 9
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


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Mon Dec 27, 2010 11:25 am 
Offline
Member
Member

Joined: Wed Nov 10, 2010 10:49 am
Posts: 109
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(".");"


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Mon Dec 27, 2010 5:04 pm 
Offline
Member
Member

Joined: Thu Mar 12, 2009 3:27 am
Posts: 43
Location: Sardegna (IT)
Testing the gui system with mouse support:
Image

The number on topright isn't fps count

_________________
My website -> http://www.inventati.org/dak/
My oop os -> http://code.google.com/p/abstractos/


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Mon Dec 27, 2010 5:38 pm 
Offline

Joined: Sun May 02, 2010 3:56 am
Posts: 9
Hello,
This is PointerOS (again) a few minutes ago
It shows some boot information and a improved CPUID

Image


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Tue Dec 28, 2010 1:39 am 
Offline

Joined: Tue Dec 28, 2010 1:33 am
Posts: 2
ELERA 0.1.6

Image

http://eleraos.brinkster.net/


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Dec 31, 2010 11:33 am 
Offline
Member
Member
User avatar

Joined: Thu Feb 12, 2009 5:12 pm
Posts: 286
@Fatih: Nice, and in ASM to, I am impressed =D>

_________________
My hero, is Mel.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Dec 31, 2010 2:28 pm 
Offline

Joined: Tue Dec 28, 2010 1:33 am
Posts: 2
thanks Coddy for appreciate :)


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Jan 01, 2011 5:35 pm 
Offline
Member
Member

Joined: Sun Sep 06, 2009 3:54 am
Posts: 169
Location: Brighton, United Kingdom
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:
struct splash {
        const char* action;
        init_function func;
};


then a function, int splash(struct splash* actions), which you would call something like this:
Code:
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.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sun Jan 02, 2011 6:19 am 
Offline
Member
Member

Joined: Sun Jun 20, 2010 1:21 pm
Posts: 127
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


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sun Jan 02, 2011 7:44 am 
Offline
Member
Member

Joined: Sun Sep 06, 2009 3:54 am
Posts: 169
Location: Brighton, United Kingdom
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 :)


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sun Jan 09, 2011 5:45 am 
Offline
Member
Member
User avatar

Joined: Thu Feb 14, 2008 10:46 am
Posts: 277
Location: Italy
The current status of my os. Next step is the gui.


Attachments:
screenshot1.PNG
screenshot1.PNG [ 15.57 KiB | Viewed 6492 times ]
Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Jan 14, 2011 6:56 pm 
Offline
Member
Member

Joined: Sun Jun 05, 2005 11:00 pm
Posts: 233
Hi all, I just post to show my operating ;-D


Attachments:
digos.JPG
digos.JPG [ 38.23 KiB | Viewed 6275 times ]
Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3898 posts ]  Go to page Previous  1 ... 62, 63, 64, 65, 66, 67, 68 ... 260  Next

All times are UTC - 6 hours


Who is online

Users browsing this forum: Bing [Bot] and 81 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group