Package com.gmail.lukas.karnowski.enigma.util

Examples of com.gmail.lukas.karnowski.enigma.util.Letter


                System.out.println( "Roller id not found" );
                return;
            }

            // Estimate position
            Letter position;
            try {
                position = Letter.fromId( Integer.parseInt( args[2] ) );
            } catch ( NumberFormatException e ) {
                try {
                    position = Letter.fromChar( args[2].toCharArray()[0] );
                } catch ( IllegalArgumentException e1 ) {
                    System.out.println( "Please enter either an id or the letter itself" );
                    return;
                }
            }

            // Update object
            enigma.getRollers()[rollerId - 1].setPosition( position );
            System.out.println( "Position of roller #" + rollerId + " updated to " + position.toString() );
        } else if ( args.length == 2 && args[0].equalsIgnoreCase( "rotate" ) ) {

            // Estimate roller id
            int rollerId;
            try {
View Full Code Here


     */
    public Letter[] stringInput( @NonNull final String input ) {
        Letter[] letters = new Letter[input.length()];
        int counter = 0;
        for ( char c : input.toCharArray() ) {
            Letter letter = Letter.fromChar( c );
            letters[counter] = keyInput( letter );
            ++counter;
        }
        return letters;
    }
View Full Code Here

        if ( string.length() != Letter.values().length ) {
            throw new IllegalArgumentException( "String length has to be " + Letter.values().length );
        }
        int counter = 0;
        for ( char c : string.toCharArray() ) {
            Letter from = Letter.values()[counter];
            Letter to = Letter.fromChar( c );
            setConnection( from, to );
            ++counter;
        }
    }
View Full Code Here

TOP

Related Classes of com.gmail.lukas.karnowski.enigma.util.Letter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.