Replace the abstract settlement building-slot system with a spatial economy where all buildings exist on hex tiles and are connected via a player-configured supply graph. Workers physically carry resources along graph edges. The Town Hall is the central storage node; all other buildings are independent map structures linked to it directly or through processing chains.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var MARGIN = 28; | |
| // Fullscreen | |
| slate.bind('f:cmd,alt', function(win) { | |
| // ±4 to account for hidden Dock on left of screen. | |
| win.doOperation(S.op('move', { | |
| 'x': 'screenOriginX - 4 + ' + MARGIN, | |
| 'y': 'screenOriginY + ' + MARGIN, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import random | |
| time_chances = [ | |
| (0, 0.10), | |
| (1, 0.15), | |
| (2, 0.10), | |
| (3, 0.35), | |
| (4, 0.25), | |
| (5, 0.05) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var gulp = require('gulp'); | |
| var shell = require('gulp-shell'); | |
| gulp.task('latex', function() { | |
| return gulp.src('*.tex') | |
| .pipe(shell(["pdflatex -interaction=nonstopmode <%= file.path %>"]).on('error', function(){})) | |
| .pipe(gulp.dest('./')) | |
| }); | |
| gulp.task('watch', function() { |