mirror of
https://github.com/Chouchen/motsmeles.git
synced 2018-06-07 06:04:38 +02:00
better gruntfile, add vendor, add README
This commit is contained in:
parent
d730c6fb67
commit
a85bb90aaf
17
Gruntfile.js
17
Gruntfile.js
@ -21,15 +21,26 @@ module.exports = function(grunt) {
|
||||
},
|
||||
jshint: {
|
||||
all: ['src/js/*.js']
|
||||
},
|
||||
copy: {
|
||||
main: {
|
||||
files: [
|
||||
{expand: true, cwd: 'src/', src: '*.html', dest: 'dist/', filter: 'isFile'},
|
||||
{expand: true, cwd: 'vendor/', src: '*.min.js', dest: 'dist/js/', filter: 'isFile'}
|
||||
]
|
||||
}
|
||||
},
|
||||
clean: {
|
||||
dist: ['dist/']
|
||||
}
|
||||
});
|
||||
|
||||
// Load the plugin that provides the "uglify" task.
|
||||
grunt.loadNpmTasks('grunt-contrib-clean');
|
||||
grunt.loadNpmTasks('grunt-contrib-uglify');
|
||||
grunt.loadNpmTasks('grunt-contrib-jshint');
|
||||
grunt.loadNpmTasks('grunt-contrib-cssmin');
|
||||
grunt.loadNpmTasks('grunt-contrib-copy');
|
||||
|
||||
// Default task(s).
|
||||
grunt.registerTask('default', ['jshint', 'uglify','cssmin' ]);
|
||||
grunt.registerTask('default', ['clean', 'jshint', 'uglify', 'cssmin', 'copy']);
|
||||
|
||||
};
|
41
README.MD
Normal file
41
README.MD
Normal file
@ -0,0 +1,41 @@
|
||||
# Mots mélés
|
||||
|
||||
This game is about words to search in a grid.
|
||||
It first started as a personal side project, but now, I want to give it life.
|
||||
|
||||
## How it works
|
||||
|
||||
Pretty simple. You gave it a grid of letter like this
|
||||
```var GRID = [
|
||||
['S','S','S','A','U','B','A','G','N','E'],
|
||||
['E','P','A','A','M','V','E','N','C','E'],
|
||||
['L','U','L','M','I','R','A','M','A','S'],
|
||||
['R','A','O','G','E','X','A','C','O','E'],
|
||||
['A','L','N','E','G','N','A','R','O','R'],
|
||||
['T','O','U','L','O','N','G','L','R','E'],
|
||||
['N','D','S','T','N','U','E','I','E','Y'],
|
||||
['I','N','P','E','E','N','I','L','D','H'],
|
||||
['C','A','S','S','U','J','E','R','F','L'],
|
||||
['E','B','E','L','S','I','S','S','A','C']
|
||||
];```
|
||||
|
||||
And a list of words to find like this
|
||||
|
||||
> var words = ['AIX','APT','ARLES','AUBAGNE','AUPS','AVIGNON','BANDOL','CANNES','CASSIS','DIGNE','FREJUS','HYERES','LUNEL','MIRAMAS','NICE','ORANGE','SALON','SORGUES','TOULON','VENCE'];
|
||||
|
||||
And that should be it. (well, you need 2 other parameters I'm gonna get rid of.
|
||||
|
||||
## TODO
|
||||
|
||||
### v0.0.2
|
||||
* diagonal detection (for now, it's only vertical and horizontal words)
|
||||
* get rid of those 2 useless parameters
|
||||
* better protection against user
|
||||
|
||||
### v0.0.3
|
||||
* make a user friendly "generator"
|
||||
** interface where a user can enter a grid and a list of words easily giving an output like the JS one right now
|
||||
|
||||
### v0.0.4
|
||||
* make an automatic generator
|
||||
** give it a size, it'll fetch words via an API and make the grid with those.
|
1
dist/css/motsmeles.css
vendored
Normal file
1
dist/css/motsmeles.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
body{font-family:Helvetica,Arial,sans-serif;font-size:20px;font-weight:700}h1{width:600px;text-align:center;margin:15px auto;z-index:10;font-weight:700;color:#6C9BD9;font-size:50px}ul{list-style:none;float:left;margin:100px 0 50px;line-height:28px}ul li.validate{color:green;font-weight:700;text-decoration:line-through}ul li.validate:before{content:'\2713 ';color:green;font-weight:700}.canvas-container{float:left;margin:100px 30px 30px 50px}#playground{background:url(feuille-de-papier.jpg) top left no-repeat;display:block;width:600px;height:600px;margin:0 auto}
|
23
dist/index.html
vendored
Normal file
23
dist/index.html
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Mot mélés</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<script src="js/fabric.1.4.0.min.js"></script>
|
||||
<script src="js/const.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen" />
|
||||
</head>
|
||||
<body>
|
||||
<h1>Mots Mélés</h1>
|
||||
<div id="playground">
|
||||
<div id="firstGame">
|
||||
<canvas id="c"></canvas>
|
||||
|
||||
<ul id="words">
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<script src="js/script.js"></script>
|
||||
</body>
|
||||
</html>
|
7
dist/js/fabric.1.4.0.min.js
vendored
Normal file
7
dist/js/fabric.1.4.0.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2
dist/js/motsmeles.min.js
vendored
Normal file
2
dist/js/motsmeles.min.js
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
/*! motsmeles 2015-01-26 */
|
||||
var SIZE=30,NUMCASE=10,GRID=[["S","S","S","A","U","B","A","G","N","E"],["E","P","A","A","M","V","E","N","C","E"],["L","U","L","M","I","R","A","M","A","S"],["R","A","O","G","E","X","A","C","O","E"],["A","L","N","E","G","N","A","R","O","R"],["T","O","U","L","O","N","G","L","R","E"],["N","D","S","T","N","U","E","I","E","Y"],["I","N","P","E","E","N","I","L","D","H"],["C","A","S","S","U","J","E","R","F","L"],["E","B","E","L","S","I","S","S","A","C"]],words=["AIX","APT","ARLES","AUBAGNE","AUPS","AVIGNON","BANDOL","CANNES","CASSIS","DIGNE","FREJUS","HYERES","LUNEL","MIRAMAS","NICE","ORANGE","SALON","SORGUES","TOULON","VENCE"],reponse="BA";!function(a,b,c,d,e,f,g){var h,i,j,k,l=new a.Canvas("c",{selection:!1}),m=[],n=[],o=!1;l.setDimensions({width:c*d+d,height:c*d+d});var p=a.util.createClass(a.Rect,{type:"labeledRect",initialize:function(a){a=a||{},this.callSuper("initialize",a),this.set("label",a.label||"")},toObject:function(){return a.util.object.extend(this.callSuper("toObject"),{label:this.get("label")})},_render:function(a){this.callSuper("_render",a),a.font="20px Helvetica",a.fillStyle="#333",a.fillText(this.label,-this.width/2+5,-this.height/2+20)}}),q=function(){var a,b,c,d=-1,f=m[0]===n[0],h=m[1]===n[1],i="";if(f){for(b=Math.min(m[1],n[1]),c=Math.max(m[1],n[1]),a=b;c>=a;a++)i+=e[m[0]][a];return Math.max(g.indexOf(i),g.indexOf(i.split("").reverse().join("")))}if(h){for(b=Math.min(m[0],n[0]),c=Math.max(m[0],n[0]),a=b;c>=a;a++)i+=e[a][m[1]];return Math.max(g.indexOf(i),g.indexOf(i.split("").reverse().join("")))}return d},r=function(a){var c=b.getElementById("words").getElementsByTagName("li"),d=c.length;for(j=0;d>j;j++)if(c[j].textContent===a){c[j].className="validate";break}};for(h=0;d>h;h++)for(i=0;d>i;i++){var s=new p({left:h*c,top:i*c,fill:"white",stroke:"black",width:c,height:c,label:e[i][h],selectable:!1});l.add(s)}for(var t=0;t<g.length;t++){var u=b.createElement("li");u.innerHTML=g[t].toUpperCase(),b.getElementById("words").appendChild(u)}l.on("mouse:down",function(b){o=!0;var d=l.getPointer(b.e),e=[d.x,d.y,d.x,d.y];m=[Math.floor(e[1]/c),Math.floor(e[0]/c)],k=new a.Line(e,{stroke:"black",strokeLineCap:"round",strokeWidth:c/2,originX:"center",originY:"center"}),l.add(k)}),l.on("mouse:move",function(a){if(o){var b=l.getPointer(a.e);k.set({x2:b.x,y2:b.y}),l.renderAll()}}),l.on("mouse:up",function(b){o=!1;var d=l.getPointer(b.e),e=[d.x,d.y];if(n=[Math.floor(e[1]/c),Math.floor(e[0]/c)],l.remove(k),m[0]!==n[0]||m[1]!==n[1]){var f=q();if(-1!==f){var h=g[f];h=m.reverse().join("").concat(n.reverse().join("")).split(""),h=h.map(function(a){return a*c+c/2});var i=new a.Line(h,{stroke:"black",strokeLineCap:"round",strokeWidth:c/2,originX:"center",originY:"center",selectable:!1});r(g[f]),g.splice(f,1),l.add(i),0===g.length&&v()}}m=[],n=[]});var v=function(){}}(fabric,document,SIZE,NUMCASE,GRID,reponse,words);
|
@ -4,6 +4,8 @@
|
||||
"description": "a simple 'mots mélés' game",
|
||||
"author": "Shikiryu",
|
||||
"devDependencies": {
|
||||
"grunt-contrib-clean": "^0.6.0",
|
||||
"grunt-contrib-copy": "^0.7.0",
|
||||
"grunt-contrib-cssmin": "^0.11.0",
|
||||
"grunt-contrib-jshint": "^0.11.0",
|
||||
"grunt-contrib-uglify": "^0.7.0"
|
||||
|
@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<title>Mot mélés</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<script src="http://cdnjs.cloudflare.com/ajax/libs/fabric.js/1.4.0/fabric.min.js"></script>
|
||||
<script src="js/fabric.1.4.0.min.js"></script>
|
||||
<script src="js/const.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen" />
|
||||
</head>
|
||||
|
21142
vendor/fabric.1.4.0.js
vendored
Normal file
21142
vendor/fabric.1.4.0.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
7
vendor/fabric.1.4.0.min.js
vendored
Normal file
7
vendor/fabric.1.4.0.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user