Skip to content

FrankDMartinez/Typing

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CONTENTS

About
Installation
How to Run the Program
Using the Full Keyboard
File System
Fitness
Adding Your Own Physical Keyboard

- - - - - - - - - - - - - - - - - - - - - - - -

ABOUT

This is a program designed to efficiently optimize keyboard layouts, inspired by the work done by Peter Klausler. It uses a (relatively) friendly command-line interface to allow the user to customize a keyboard layout.

I began developing this program in 2008 and have been working on it since then. For updates, see https://mathematicalmulticore.wordpress.com/category/keyboards/ and https://github.com/MTGandP/Typing.

- - - - - - - - - - - - - - - - - - - - - - - -


INSTALLATION

1. If you don't have gcc installed, install it. https://gcc.gnu.org/
2. Run "make" to produce an executable file.
3. You may now execute "optimizer" with

	./optimizer

to run the program.

This program is designed for a 64-bit platform. If you are using a 32-bit or smaller platform, it will run significantly slower.

- - - - - - - - - - - - - - - - - - - - - - - -

HOW TO RUN THE ALGORITHM

The program itself provides documentation for the various options.

- - - - - - - - - - - - - - - - - - - - - - - -

USING THE FULL KEYBOARD

The default setting is to evaluate the main 30 keys on the keyboard (this is how the program was originally written). You can also use it to evaluate the entire keyboard by changig it at runtime or by changing this line near the beginning of initValues() in values.c: 

fullKeyboard = <FK_SETTING>;

To use the main 30 keys write FK_NO, for the full keyboard use FK_STANDARD, and for a full Kinesis keyboard use FK_KINESIS.

For the more casual keyboard optimizer I recommended just optimizing the main 30 keys, as the other keys don't have a very large effect and the rarer keys are much more difficult to re-learn. But if you want maximum optimization, this is the option for you. This option can use a standard keyboard or the Kinesis Advantage Pro keyboard (if you're willing to go to the trouble of re-learning your entire keyboard then you may as well buy a top-of-the-line ergonomic keyboard too).

The full standard keyboard supposedly has 56 characters: 4 rows of 14. In truth it only has 47: 

(m indicates a main-30 key, and k indicates an additional key.)

  k k k k k k k k k k k k k
    m m m m m m m m m m k k k
    m m m m m m m m m m k
    m m m m m m m m m m

The full kinesis keyboard supposedly has 72 keys: 6 rows of 12. In truth it only has 50: 
 
  k k k k k k k k k k k
  m m m m m m m m m m k
  m m m m m m m m m m k
  m m m m m m m m m m
  k k             k k
  k k               k k // thumb keys

The costs for individual keys on the keyboard must be edited from inside the source code. Change costsCopy in initValues() in values.c to change the costs for the individual keys. Then run "make" again to re-compile the source code.

 - - - - - - - - - - - - - - - - - - - - - - - -

FILE SYSTEM

main.c: Runs the core functions.

cjalgorithm.c: Runs an algorithm based on one written by Chris Johnson ([email protected]). It has the same purpose as algorithm.c but runs much faster.

accessories.h: Header file for accessories.
accessories.c: Contains various extras that are not directly related to the algorithm. Contains a keyboard improvement function, a function to collect timing data, a function that compares various layouts in a simple way, and a function to evaluate the cost of each individual digraph for a given keyboard.

algorithm.h: Header file for algorithm.
algorithm.c: This is the core of the evolutionary algorithm. It is responsible for generating and evaluating keyboards.

keyboard.h: Header file for keyboard and fitness.
keyboard.c: Contains functions that center around the keyboard structure itself. Responsible for initializing and printing a keyboard. Also contains some miscellaneous functions that are directly related to the keyboard structure.

fitness.c: Contains the core "calcFitness" function as well as several smaller functions for individual aspects of fitness such as same hand usage, same finger, finger travel distance, etc.

tools.h: Header file for tools and trikeys.
tools.c: Contains necessary tools for running the algorithm. Contains the lists of digraphs and monographs. Also contains some miscellaneous functions such as the rand30() function.

trikeys.c: A list of trigraphs. This list was too long to include in any other file so it had to be given a separate file.

values.h: Contains various constants as well as the fitness costs.
values.c: Contains some fitness costs as arrays.

 - - - - - - - - - - - - - - - - - - - - - - - -

FITNESS

See Fitness.txt.
 
 
 - - - - - - - - - - - - - - - - - - - - - - - -

ADDING YOUR OWN PHYSICAL KEYBOARD

By default there are three options for physical keyboards: a keyboard with just the main 30 keys (FK_NO), a full standard keyboard (FK_STANDARD), and a Kinesis keyboard (FK_KINESIS). You can add your own physical keyboard by modifying the source code in a few places. Let's say you want to add a keyboard called Binary which only has two keys on it. You would have to follow these steps.

1. At the beginning of values.h, you will see this: 

	#define FK_NO 0
	#define FK_STANDARD 1
	#define FK_KINESIS 2
	// ...
	
Add this line to the end: 

	#define FK_BINARY 10

It doesn't matter what number you give as long as no other keyboard uses the same number.

2. In tools.c near the bottom there's a function called setksize(). It sets the size of the keyboard. Add your keyboard to the switch statement, like so: 

	case FK_BINARY:
		ksize = 2; /* The size of the keyboard in this case is 2 */
		break;

3. In values.c there's a function called initValues() containing code that looks like this: 

	if (full_keyboard == FK_NO) {
		// Set keyboard position costs manually. These costs were determined by looking at how the positions were valued on some of the best alternative layouts.
		long long costsCopy[KSIZE_MAX] = {
			70,  35,  30,  40,  60,  80,  40,  30,  35,  70, 
			10,   4,   0,   0,  35,  35,   0,   0,   4,  10, 
			90,  85,  60,  50,  95,  70,  40,  60,  80,  90, 
		};
		for (i = 0; i < ksize; ++i)
			distanceCosts[i] = costsCopy[i];

	// ...
		
	} else if (full_keyboard == FK_STANDARD) {
		
	// ...

	} else if (full_keyboard == FK_KINESIS) {
		
	// ...
		
	}	

Add a new section that looks like this: 

	if (full_keyboard == FK_BINARY) {
		long long costsCopy[KSIZE_MAX] = {
			// Whatever you want the costs for each index to be. In this case, the first index costs 10 and the second costs 5.
			10, 5
		}
		for (i = 0; i < ksize; ++i)
			distanceCosts[i] = costsCopy[i];
	}

4. In tools.c there's a function called initKeyboardData(). It includes all the data for each keyboard, including fingerCopy[], rowCopy[], homeRow, handCopy[], isCenterCopy[], isOutsideCopy[], printItCopy[], indicesCopy[]. You'll have to create one of each of these. See tools.h for an explanation of what they each do. (In tools.h the names don't contain the word 'Copy'.)

Releases

No releases published

Packages

No packages published

Languages

  • C 100.0%