Skip to content

jimschubert/jquery.empuzzle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jquery.empuzzle

Playing 'Jigsy' over at cityposh.com is pretty fun. I received a few JavaScript errors in Google Chrome, so naturally I wanted to write my own puzzle plugin.

jquery.empuzzle is that plugin.

N-puzzle

jquery.empuzzle is named for the N-puzzle it creates. Since 'enpuzzle' isn't recognized as a real word, it uses the archaic 'empuzzle'.

Usage

I'm going to try to keep the options as simple as possible. Here is an example.

$('#myOriginalImage').empuzzle({
	size: 6,
	target: $('#target'), 
	blank: 'BR'
});

.empuzzle( options )

options available are:

size : {Integer}
win : function(game) { }
target : {element}
blank : {'TL'|'TR'|'BL'|'BR'}
randomize : function(game, defaultRandomizer) { }
anim : {jQuery animation options}
DEBUG : {true|false}

An example of how to specify these options:

var options = { 
    size: 6, 
    blank: 'TR', 
    win: myValidation /* function reference */ 
};

Reading / References

N-puzzle @ wikipedia
"A Real-Time Algorithm for the (n2− 1)-Puzzle" by Ian Parberry

License

jquery.empuzzle is released under the MIT License.

Copyright (c) 2011 James Schubert

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Donate!

Help me avoid becoming poor.

Donate

About

This is a jQuery plugin modeled after the 'Jigsy' game on cityposh.com

Resources

License

Stars

Watchers

Forks

Packages

No packages published