What does your OS look like? (Screen Shots..)
Re: What does your OS look like? (Screen Shots..)
wndproc that looks pretty cool, nice concept
open source?
open source?
Re: What does your OS look like? (Screen Shots..)
Here are my OS screen shots.
It is still primitive as it is taking me a lot longer because this is my first OS. All I can say is I am impressed I have gotten this far.
So Far it:
loads GDT
Loads IDT
Inits IRQ
Inits ISRs
Inits Keyboard and console drivers.
It is still primitive as it is taking me a lot longer because this is my first OS. All I can say is I am impressed I have gotten this far.
So Far it:
loads GDT
Loads IDT
Inits IRQ
Inits ISRs
Inits Keyboard and console drivers.
Gizmic OS
Currently - Busy with FAT12 driver and VFS
Currently - Busy with FAT12 driver and VFS
Re: What does your OS look like? (Screen Shots..)
I'm afraid, no. But the concepts aren't that hard to program.lukem95 wrote:wndproc that looks pretty cool, nice concept
open source?
If you want to program your own 3D software renderer, follow these steps:
1) Write (or take over) a basic math library with matrix and vector support.
2) Write a triangle drawing algorithm (<- was the most tricky part).
3) Extract vertex- and index buffer data from any 3d object.
4) Transform vertex data into screen space (by multiplying with world, view and projection matrices).
5) Add some animation or mouse interaction, by modifying the world matrix.
6) Draw the transformed triangles to a backbuffer (color information) and a z-buffer (floating point buffer holding depth values), using the z-buffer for clipping.
7) Apply a simple diffuse lightning vertex shader for a nice color shading.
8.) Copy the backbuffer to screen and clear z- and backbuffers for the next frame.
9) Loop steps 4 to 8.
If you run into trouble, check http://www.gamedev.net or send me a message.
-
- Member
- Posts: 34
- Joined: Sun Aug 03, 2008 5:38 am
Re: What does your OS look like? (Screen Shots..)
As you can see, my OS is still relatively basic, it's stable but it does little, but I'm still proud of it, since it took me a while to accomplish this. Slosh stands for "Super Lightweight Onyx Shell", the default shell in my OS.
Re: What does your OS look like? (Screen Shots..)
Reviving this old thread.
This time I'm showing off the first iteration of my window manager I'm implementing for a graphical shell for my little OS which has come a long way since my last post in here. The window manager itself is pretty much structured like GDI+ with drawing routines isolated in the graphics driver to allow it to use possible hardware acceleration in the future. For now it's just using software rendering with a simple VESA framebuffer driver
This time I'm showing off the first iteration of my window manager I'm implementing for a graphical shell for my little OS which has come a long way since my last post in here. The window manager itself is pretty much structured like GDI+ with drawing routines isolated in the graphics driver to allow it to use possible hardware acceleration in the future. For now it's just using software rendering with a simple VESA framebuffer driver
http://j-software.dk | JPasKernel - My Object Pascal kernel
Re: What does your OS look like? (Screen Shots..)
Most recent screenshot of my little operating system. Currently it's broken
Haven't had very much time with it because of a website making competition I have to prepare for. But in a few weeks I can continue developing my OS.
Haven't had very much time with it because of a website making competition I have to prepare for. But in a few weeks I can continue developing my OS.
http://code.google.com/p/rmmtos/ - Real Mode MultiTasking Operating System
- Troy Martin
- Member
- Posts: 1686
- Joined: Fri Apr 18, 2008 4:40 pm
- Location: Langley, Vancouver, BC, Canada
- Contact:
Re: What does your OS look like? (Screen Shots..)
Dude!!!!
Nice looking OS you've got there!
Nice looking OS you've got there!
Re: What does your OS look like? (Screen Shots..)
Yeah, looks damn good.
Feature request for next version: Terminal icon to have >_< on it instead of >_
Feature request for next version: Terminal icon to have >_< on it instead of >_
- Troy Martin
- Member
- Posts: 1686
- Joined: Fri Apr 18, 2008 4:40 pm
- Location: Langley, Vancouver, BC, Canada
- Contact:
Re: What does your OS look like? (Screen Shots..)
Welcome claxonix!
I had to squint to read the green text well, but it looks like you have a nice OS there! I suggest you make the text the regular light grey colour.
I had to squint to read the green text well, but it looks like you have a nice OS there! I suggest you make the text the regular light grey colour.
Re: What does your OS look like? (Screen Shots..)
thanks. basicaly it is a kernel with some things from linux but is not linux.it is multitasking and has a command line.but i stop developing from time and motivation reasons and i didn't implement to much.i have drivers only for keyboard and console and more unfinished (hdd, fdd, pci, sound).maybe someday i will restart develop.
- Troy Martin
- Member
- Posts: 1686
- Joined: Fri Apr 18, 2008 4:40 pm
- Location: Langley, Vancouver, BC, Canada
- Contact:
Re: What does your OS look like? (Screen Shots..)
Okay, time to post shots of my OS, Titanium Bonfire Operating System.
Re: What does your OS look like? (Screen Shots..)
Looks good . How long are you working on it?
- Troy Martin
- Member
- Posts: 1686
- Joined: Fri Apr 18, 2008 4:40 pm
- Location: Langley, Vancouver, BC, Canada
- Contact:
Re: What does your OS look like? (Screen Shots..)
Mine? Started in mid-October this year. It's completely in real mode, and can be run on as little as a 186 (pusha and popa weren't in the original 8086) as long as you have a VGA card in the box for the 80x50 font.