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

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
rstat1
Posts: 1
Joined: Wed Aug 26, 2009 9:44 pm

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

Post by rstat1 »

AUsername
Member
Member
Posts: 54
Joined: Sun Feb 01, 2009 9:07 pm

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

Post by AUsername »

Image
Image

Hot, I know.
User avatar
Creature
Member
Member
Posts: 548
Joined: Sat Dec 27, 2008 2:34 pm
Location: Belgium

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

Post by Creature »

Image

The text uses the bitmap font I posted here. I was planning to eventually have some sort of 'enhanced text mode' where I don't have a GUI, but a text video mode font inside video mode, allowing some sort of text mode with an image on the background or just have many more colours for text.

The blob-thingy is just our logo (which has an alpha channel) that I'm testing with some highly-unoptimized alpha blending code :P.
When the chance of succeeding is 99%, there is still a 50% chance of that success happening.
User avatar
AndrewAPrice
Member
Member
Posts: 2297
Joined: Mon Jun 05, 2006 11:00 pm
Location: USA (and Australia)

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

Post by AndrewAPrice »

Image

My GUI being prototyped. The mouse cursors are circle since arrows imply an orientation. Tablet and surface PCs don't necessarily have an 'up'.
My OS is Perception.
xyzzy
Member
Member
Posts: 391
Joined: Wed Jul 25, 2007 8:45 am
Libera.chat IRC: aejsmith
Location: London, UK
Contact:

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

Post by xyzzy »

Screenshot of my latest OS (Kiwi):
Image
eddyb
Member
Member
Posts: 248
Joined: Fri Aug 01, 2008 7:52 am

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

Post by eddyb »

AlexExtreme wrote:Screenshot of my latest OS (Kiwi)
:shock: You wanna cover the Exclaim failure?</sarcasm>
Really now, i want to hear some more about this kiwi thing ;) .
dak91
Member
Member
Posts: 43
Joined: Thu Mar 12, 2009 3:27 am
Location: Sardegna (IT)

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

Post by dak91 »

AlexExtreme wrote:Screenshot of my latest OS (Kiwi):
cool! and cool logo =)
xyzzy
Member
Member
Posts: 391
Joined: Wed Jul 25, 2007 8:45 am
Libera.chat IRC: aejsmith
Location: London, UK
Contact:

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

Post by xyzzy »

eddyb wrote:
AlexExtreme wrote:Screenshot of my latest OS (Kiwi)
:shock: You wanna cover the Exclaim failure?</sarcasm>
Really now, i want to hear some more about this kiwi thing ;) .
Failure?
User avatar
finarfin
Member
Member
Posts: 106
Joined: Fri Feb 23, 2007 1:41 am
Location: Italy & Ireland
Contact:

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

Post by finarfin »

AlexExtreme wrote:Screenshot of my latest OS (Kiwi):
Image
Ahr Ahr Ahr

your "cat" command is very very funny ^_^
Elen síla lúmenn' omentielvo
- DreamOS64 - My latest attempt with osdev: https://github.com/dreamos82/Dreamos64
- Osdev Notes - My notes about osdeving! https://github.com/dreamos82/Osdev-Notes
- My old Os Project: https://github.com/dreamos82/DreamOs
User avatar
f2
Member
Member
Posts: 311
Joined: Mon Jun 15, 2009 10:01 am
Location: France

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

Post by f2 »

AlexExtreme wrote:Screenshot of my latest OS (Kiwi):
Cool! :P This is the successor of Exclaim! Meow!
"Open source seems to embrace the dark side of human nature." - Ville Turjanmaa
User avatar
Coty
Member
Member
Posts: 286
Joined: Thu Feb 12, 2009 5:12 pm

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

Post by Coty »

AlexExtreme wrote:Screenshot of my latest OS (Kiwi):
Awesome, exelent work =D>
My hero, is Mel.
User avatar
Brendan
Member
Member
Posts: 8561
Joined: Sat Jan 15, 2005 12:00 am
Location: At his keyboard!
Contact:

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

Post by Brendan »

Hi,

I've almost finished a "display module", used by my boot code to display the boot log using the video card.

It handles Unicode (there's font data for all code points from 0x000000 to 0x0000FF), and works for 8-bpp, 15-bpp, 16-bpp, 24-bpp and 32-bpp at any resolution that's 320 * 200 or larger. I still need to add support for 4-bpp.

It's completely resolution independent. It calculates what size font it wants based on how big the monitor is and the monitor's aspect ratio (and scales the 64 * 64 font data to suit); so that regardless of which video mode you use it looks the same (higher resolution means more detail rather than more characters); and so that characters don't look too short/fat on wide screen monitors, or too tall/skinny on 4:3 monitors, or too small on small monitors, or too large on large monitors. :)

Here's a screen shot from Bochs, for 1024 * 768 @ 32-bpp on a virtual 33 cm by 25 cm (standard 4:3 "15 inch") monitor:
unifnt.png

Cheers,

Brendan
For all things; perfection is, and will always remain, impossible to achieve in practice. However; by striving for perfection we create things that are as perfect as practically possible. Let the pursuit of perfection be our guide.
jal
Member
Member
Posts: 1385
Joined: Wed Oct 31, 2007 9:09 am

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

Post by jal »

Brendan wrote:It handles Unicode (there's font data for all code points from 0x000000 to 0x0000FF),
Are 0x00-0x1F valud Unicode code points? Never new that...
It's completely resolution independent.
That's pretty cool, although you still may want some options for visually impaired (or the opposit) people.
Here's a screen shot
Anti-aliased and all. Impressive.


JAL
Last edited by jal on Mon Sep 14, 2009 4:25 am, edited 1 time in total.
User avatar
f2
Member
Member
Posts: 311
Joined: Mon Jun 15, 2009 10:01 am
Location: France

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

Post by f2 »

Brendan wrote: Here's a screen shot from Bochs, for 1024 * 768 @ 32-bpp on a virtual 33 cm by 25 cm (standard 4:3 "15 inch") monitor:
Wow ! Good job =D> ! I really like the font.
"Open source seems to embrace the dark side of human nature." - Ville Turjanmaa
User avatar
AndreaOrru
Member
Member
Posts: 50
Joined: Fri Apr 25, 2008 2:50 pm
Location: New York

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

Post by AndreaOrru »

Really, really impressive. Is there some code to see?

P.S. And what is the font?
Last edited by AndreaOrru on Mon Sep 14, 2009 4:53 am, edited 1 time in total.
Close the world, txEn eht nepO
Post Reply