Welcome to TempleOS

TempleOS is a x86_64, multi-cored, non-preemptive multi-tasking, ring-0-only, single-address_mapped (identity-mapped), operating system for recreational programming. Paging is almost not used. The people whom can most benefit are: * Professionals doing hobby projects * Teenagers doing projects * Non-professional, older-persons projects Simplicity is a goal to keep the line count down, so it's easy to tinker with. As it turns-out, simplicity makes it faster in some ways, too. It never switches privilege levels, never changes address maps, tends to load whole contiguous files and other, similar things which boost speed. It's only 116,077 lines of code including the kernel, the 64-bit compiler, the graphics library and all the tools. More importantly, it's designed to keep the user's line count down -- you can do a Hello World application in one line of code and can put graphics on the scrn with a three line program! It's a kayak, not a Titanic -- it will crash if you do something wrong. You quickly reboot, however. DOS and the 8-bit home computers of the 80's worked fine without memory protection and most computers in the world -- the embedded ones -- operate without protection. The resulting simplicity of no protections is why TempleOS has value. In facts, that's the point of TempleOS. See the TempleOS Charter. Conventional thinking is "failure is not an option" for general purpose operating systems. Since this OS is used in addition to Windows or Linux, however, failure is an option -- just use Windows or Linux if you can't do something. I cherry-pick what it will and won't do, to make it maximally beautiful. The following applications more or less form a basis that spans the range of use that TempleOS is intended for: /Demo/Games/BattleLines.HC /Demo/Games/BigGuns.HC /Demo/Games/BlackDiamond.HC /Demo/Games/BomberGolf.HC /Demo/Games/CastleFrankenstein.HC /Demo/Games/CharDemo.HC /Demo/Games/CircleTrace.HC /Demo/Games/Collision.HC /Demo/Games/Digits.HC /Demo/Games/DunGen.HC /Demo/Games/Talons.HC /Demo/Games/ElephantWalk.HC /Demo/Games/FlapBat.HC /Demo/Games/FlatTops.HC /Demo/Games/Halogen.HC /Demo/Games/MassSpring.HC /Demo/Games/Maze.HC /Demo/Games/RainDrops.HC /Demo/Games/RawHide.HC /Demo/Games/Rocket.HC /Demo/Games/RocketScience.HC /Demo/Games/Squirt.HC /Demo/Games/TheDead.HC /Demo/Games/TicTacToe.HC /Demo/Games/TreeCheckers.HC /Demo/Games/Varoom.HC /Demo/Games/Wenceslas.HC /Demo/Games/Whap.HC /Demo/Games/Zing.HC /Demo/Games/ZoneOut.HC /Apps/Psalmody/Examples/childish.HC /Apps/Psalmody/Examples/night.HC /Apps/Psalmody/Examples/prosper.HC Two things to know about TempleOS are that tasks have MAlloc/Free heap memory, not applications, and tasks have compiler symbol tables that persist at a scope like environment variables in other operating systems, and the symbols can include functions. For other operating systems, I hated learning one language for command line scripts and another for programming. With TempleOS, the command line feeds right into the HolyC compiler, line by line, and it places code into memory it MAlloc()s. The compiler is paused at the command line, waiting for input. Naturally, you #include a program to load it into memory and, usually, start it. During the boot process, many files get compiled before you have access to the command line. (Don't worry, booting takes only two seconds.) All the header declarations for the operating system are compiled and are available for use in your programs without needing to #include them. Everything is truly compiled to native x86_64 machine code, nothing is interpreted and there is no byte code. Statements at the global scope -- outside the scope of functions -- execute immediately. There is no main() function. Instead, you give meaningful names to what would be main() functions and you invoke them by calling them with a statement in the global scope, usually at the bottom of your file. I started with C syntax, but didn't like the command line for a directory listing looking like this: >Dir("*.*",FALSE); So, I added default args from C++ and it looked like this: >Dir(); I didn't like that, so I made parentheses optional on calls with no args and it, now, looks like this: >Dir; The syntax change created an ambiguity when specifying function addresses, like for calling QSort(). To resolve it, I made a '&' required in front of function names when specifying an address of a function, which is better anyway. Once I was no longer using standard C/C++ syntax, I decided to change everything I didn't like and call it HolyC. Here are the new operator precedence rules. It's Biblical! See Luke,5:37. There are no object files in TempleOS and, normally, you don't make executable files either, but you can. That's known as Ahead-of-Time compilation. Instead, you Just in Time compile. Tasks have no priority and are never removed from the queue. Instead, they often poll whatever they are waiting on and swap-out. (Swapping tasks takes half a microsecond and does not involve disk activity or memory maps.) See Scheduler. Polling keeps it simple. It might be a problem if you had lots of tasks busy, which rarely happens on a home computer. The order of the tasks in the queue determines front-to-back window order. The FAT32 filesystem is supported to makes exchanging files with a dual booted other operating system easy and there is the simple, 64-bit TempleOS RedSea filesystem. The RedSea has allocation bitmap for clus and all files are stored contiguously. You can't grow files. TempleOS is geared toward reading and writing whole files. Since whole files are processed, compression is possible. Filenames ending in ".Z" are automatically compressed or uncompressed when stored and fetched. TempleOS does support direct block random access into files, however -- FBlkRead() and FBlkWrite(). If a file is not found, ".Z" is added or removed and a search is done, again. There is no PATH, but parent directories are searched when a file is not found. This feature is especially useful for default account files. The graphic resolution is poor, 640x480 16 color, but God said it was a covenant like circumcision. Also, that's all I feel comfortable with without GPU acceleration supported. A 1600x1200x24 bit scrn takes 37 times more memory, implying 37 times the CPU power. Also, a fixed size keeps it simple with everybody machine having the same appearance. Look on the bright-side -- you won't spend as much time twiddling pixels for your game art and you'll have tons of CPU power available, especially with multicore systems. TempleOS is for hobbyist programmers on single user (at a time) home computers, not mainframes or servers. The focus task is all-important so symmetrical multiprocessing is almost pointless. Why does it matter running two apps at the same time twice as fast when you really want to run one faster? You could say TempleOS does master/slave multiprocessing. The anticipated use for multicore is primarily putting graphics on the scrn. Hardware graphics acceleration is not used, so this is possible. See TempleOS MultiCore. There is no distinction between the terms task, process or thread. All have a task record, CTask, pointed to by the FS segment reg and are accessed with Fs-> while Gs-> points to a CCPU for the current CPU core. Each task can have just one window, but a task can have children with windows. (The segment regs are just used as extra regs -- there is nothing segmented about TempleOS' memory.) It is approximately the case that TempleOS is multi-threading, single-processing. In TempleOS, Adam Task refers to the father of all tasks. He's never supposed to die. Since tasks inherit the symbols of parents, system-wide stuff is associated with Adam. His heap is like kernel memory in other operating systems. Since Adam is immortal, it's safe to alloc objects, not tied to any mortal task, from Adam's heap. He stays in a server mode, taking requests, so you can ask him to #include something, placing that code system-wide. A funny story is that originally I called it the root task and even had a /Root directory :-) Adam executes ::/StartOS.HC at boot time. For easy back-ups, place everything you author in your /Home directory and subdirectories. Then, use CopyTree(). That should make upgrading easy, too. Customizable start-up scripts go in your /Home directory. The default start-up scripts are in the root directory. Copy the start-up files you wish to customize into /Home and modify them. See Home Files. You can make your own distro that includes everything and is a bootable live CD with ::/Misc/DoDistro.HC. Typically, your usage pattern through the day will be repeatedly left or right clicking on filenames in a cmd line Dir() listing. You left-click files to edit them and right-click to #include them. To begin a project, type Ed("filename"); , supplying a filename. You can also run programs with <F5> when in the editor. <ESC> to save and exit the file. You'll need to do a new Dir() cmd, periodically, so make a macro on your PersonalMenu. Access your PersonalMenu by pressing <CTRL-m>, cursoring until you are on top of it and pressing <SPACE>. <CTRL-t> toggles plain text mode, showing format commands, a little like viewing html code. <CTRL-l> inserts a text widgets. <CTRL-r> inserts or edit a graphic sprite resource at cursor location. <CTRL-d> brings-up the file manager. It's pretty crappy. I find I don't need it very often, believe it or not. <CTRL-b> toggles window border. <ALT-m> maximizes a window. <ALT-SHIFT-a> closes AutoComplete. <ALT-a> brings back AutoComplete. <ALT-v> vertically tiles windows. <ALT-h> horizontally tiles windows. The ALT keys are defined in ~/HomeKeyPlugIns.HC. You can customize them. <CTRL-ALT-t> new terminal window. <CTRL-ALT-n> switches to the next window. <CTRL-ALT-x> kills a window. Find() is your best friend. There's a wrapper function called F() in your ~/Hom eWrappers.HC.Z file. Feel free to make wrapper functions for functions you use often and customize the args. By the way, Find() or R() can be used to replace strings across multiple files. You can access Find() using <CTRL-SHIFT-f>. As you browse code, use the AutoComplete window to look-up functions, etc. <CTR L-SHIFT-F1> (or whatever number) to follow a sym to it's source. You can browse deeper and deeper. You go back with <SHIFT-ESC>. Use the Help & Index or Demo Index to find-out what exists. Press <F1> for help or use the links on your menu (<CTRL-m>). Also, look in the /Demo or /Apps directories for inspiration. Software is distributed as RedSea ISO files. Burn a CD/DVD, or set your CD/DVD in QEMU, VMware or VirtualBox to the ISO file. Then, access the 'T' drive. Or, Mount() the ISO.C file and access the 'M' drive in TempleOS. It must be a contiguous ISO.C file, so rename it under TempleOS to ISO.C. Ideally, do not install applications such as games onto your hard drive because we wish to keep hard drive usage low, so the whole 'C' drive can be copied quickly to 'D'. Also, the FileMgr() <CTRL-d> starts too slowly when there are lots of hard drive files, but that is how we want it. 3rd party libraries are banned, since they circumvent the 100,000 line of code limit in the TempleOS Charter. All applications must only depend on the core TempleOS files and whatever they bring along in the ISO. This is similar to how Commodore 64 applications only depended on the ROM. Create a RedSea ISO file with RedSeaISO(). Send an email to tdavis@templeos.org if you want me to post a link to your TempleOS code in the App Store. Take Tour * "Linux" is a trademark owned by Linus Torvalds. * "Windows" is a trademark owned by MicroSoft Corp. * "Commodore 64" is a trademark owned by Polabe Holding NV. * "QEMU" is a trademark owned by Fabrice Bellard. * "VMware" is a trademark owned by VMware, Inc. * "VirtualBox" is a trademark owned by Oracle.