Libraries ported:
zlib
libpng
freetype (the fonts are rendered by freetype).
The window compositor is homemade, I've written SSE and MMX routines for alpha-blending which are glorious
![Smile :-)](./images/smilies/icon_smile.gif)
Haha thanks, I don't like the fonts either, but I'm having a hard time finding something I actually like :pBender wrote:@MollenOS Cool. I didn't like the font personally. Nice to see more hobby OSes having a GUI.
And do you have a project page?
I released 2.0...no92 wrote:@klange: What's up with PonyOS? It's the April 2nd!
Code: Select all
RamdiskInputStream in = null;
String content = "";
try {
in = new RamdiskInputStream(path);
byte[] buffer = new byte[512];
int len;
while ((len = in.read(buffer, 0, 512)) > 0) {
content += new String(buffer, 0, len);
}
} catch (IOException e) {
out.println("File not found or not readable");
} finally {
in.close();
}
Cool.max wrote:What you see in this picture is a console thats implemented in Java
haters gonna hatejal wrote:Cool.max wrote:What you see in this picture is a console thats implemented in Java
JAL
I wonder if the entire system is in Java or not.max wrote:haters gonna hatejal wrote:Cool.max wrote:What you see in this picture is a console thats implemented in Java
JAL
Yes, the entire userspace and the drivers are/will be written in Java. On startup the kernel initializes the memory management, sets up scheduling and then loads the ramdisks. Then the control is handed to the VM (which relies on that basic setup) that loads the Startup class and there we go.Bender wrote:I wonder if the entire system is in Java or not.
EDIT: Okay not the whole system, but I was wondering whether you'll make your entire userspace in Java.
Anyways Good Work and don't forget to create 2^(1000) backups.