Page 90 of 262

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

Posted: Wed Mar 13, 2013 11:31 am
by Mikemk
I even added a game of life simulator!
This looks like a osdev Picasso. How do you play?

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

Posted: Wed Mar 13, 2013 11:55 am
by Mikemk
A few screenshots. This interface is just to test hardware interfaces. It will change.
My clock works.
My clock works.
My key handling is nearly finished.  No arrow keys yet.  Also, I meant to type, YAY!, not YEAH
My key handling is nearly finished. No arrow keys yet. Also, I meant to type, YAY!, not YEAH
It likes me to know when I make a mistake...
It likes me to know when I make a mistake...

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

Posted: Thu Mar 14, 2013 3:47 pm
by Prochamber
Here's some shots of an operating system I'm working on called TachyonOS.
It uses a text-mode menu based system but has good graphics API as well.

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

Posted: Fri Mar 15, 2013 11:34 am
by Antti
@Prochamber: Your latest "The central application menu." screenshot is excellent! I do not know why but it looks very professional. Very polished and easy to use.

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

Posted: Fri Mar 15, 2013 2:10 pm
by Kazinsal
Antti wrote:@Prochamber: Your latest "The central application menu." screenshot is excellent! I do not know why but it looks very professional. Very polished and easy to use.
Agreed, it's quite an improvement on MikeOS's simple file browser dialog as an application menu.

@Prochamber: Does the central application menu read app names from the apps themselves or are they hardcoded in?

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

Posted: Sat Mar 16, 2013 7:27 am
by Prochamber
I think a simple, easy to use interface is very important to any operating system. It's the first thing the
user sees and it makes an important first impression.
Blacklight wrote:
Antti wrote:@Prochamber: Your latest "The central application menu." screenshot is excellent! I do not know why but it looks very professional. Very polished and easy to use.
Agreed, it's quite an improvement on MikeOS's simple file browser dialog as an application menu.
Every time I see the horrible colour combinations of MikeOS I die a little inside... :D

Seriously though, it's good that MikeOS has so many great user interface components.
The first thing I did when I ported MikeOS was create a new interface, I wanted it to look more like
the start menu you see in GNOME or KDE, with application names rather than file names and
have submenus and mix system commands with programs. I spend a long time figuring
out the right colour combination.

One of my favorite things about the interface is that you can make custom background through the
picture editor.
Blacklight wrote:@Prochamber: Does the central application menu read app names from the apps themselves or are they hardcoded in?
Actually, it's a hard coded list at the moment. However it would be fairly easy to make it run off a file. I could add this to build #6 that I'm
currently working on.

I have a google code at: https://code.google.com/p/tachyon-os/

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

Posted: Tue Mar 19, 2013 3:47 am
by Kazinsal
It's not a terrible lot compared to some of the OSes on here, but here's BlacklightEVO.

Image

The graphical mode is set through VirtualBox's display adapter interface the same way as the official VirtualBox Guest Additions drivers set it.

I'm incredibly tired, and incredibly pleased with it.

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

Posted: Tue Mar 19, 2013 11:14 pm
by klange
Slowly, but surely, getting Vim running:

Image

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

Posted: Wed Mar 20, 2013 3:53 pm
by sortie
Oh, yeah. I ported Quake to my OS. Since a video is more powerful than mere screenshots, here's a video of it in action:

https://www.youtube.com/watch?v=mPjwjZGoYrU&hd=1

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

Posted: Fri Mar 22, 2013 7:46 am
by bellezzasolo
Here is mine - TeraOS.
I have blanked out my real name, as I am only 14.
The first is build 5, and the next is build 50.
Build 5 was extremley poor, no CLI working.

Build 10 had CLI functionality.
Build 25 ran on real PCs (fxrstor thing in IRQ handler causing fault).
Build 52ish introduced program loading.

Current build: 65.
The logo in graphics mode is copyright me, by the way.

The OS is written in C++, and uses polymorphism.
Here is build 5 (befor I had a working command line)
Here is build 5 (befor I had a working command line)
This is my WIn8 lock screen, featuring 2 pictures of my OS (build 50). Working CLI,, and VGA graphics.
This is my WIn8 lock screen, featuring 2 pictures of my OS (build 50). Working CLI,, and VGA graphics.

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

Posted: Fri Mar 22, 2013 2:07 pm
by klange
With a few hacks here and there, Vim, in full 256-color theme and syntax-hilighting goodness:

Image

It has been a productive morning.

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

Posted: Sat Mar 23, 2013 3:25 pm
by sortie
With a bit of effort hacking around their terrible build system (at least for cross-compiling purposes and because their ./configure works in non-standard ways, that their assembly is written in yasm..., and they do a few bad things), I managed to port libav to my operating system. I hacked together a quick and dirty video playing using libavcodec, libavformat and libswscale and the result is that I can now play videos under my operating system! It even runs smoothly under virtualbox, besides the occasional crash:

Image

Image

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

Posted: Tue Mar 26, 2013 6:40 am
by brain
Here is my OS as it currently stands.

I need to find time to get back into it.

Multitasking Acorn MOS imitation which has FAT32 and ISO9660 support (with long filename support). Loadable kernel modules, commandline with programs.
Filesystem access available to those programs.

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

Posted: Thu Mar 28, 2013 4:28 pm
by phillid
That looks very nice, brain. I like the use of just three simple colours - black, grey and yellow.

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

Posted: Sun Mar 31, 2013 5:32 am
by FusT
I'll join the fun.

My OS has no name (yet) but it works.
Nothing fancy, it has multitasking, paging and usermode support.
It also has a simple implementation of printf() and some pipe support I've been working on for my keyboard.

Pipe, kopen and kprintf tests:
Image

Simple built-in kernel commandline with built-in ls and cat support:
Image

Still working on multiple task/process support and ELF loading routines but even with my limited amount of time it's getting somewhere.