/* * TTSDeck.js * * Creates a deck image and corresponding "Saved Object" JSON for use * in Tabletop Simulator */ useLibrary('project'); useLibrary('imageutils'); useLibrary('threads'); useLibrary('uilayout'); importClass(arkham.project.CopiesList); const TTSJson = require('./TTSJson.js'); // The resolution (in pixels per inch) of the exported images const RESOLUTION = 200; // The extension of the image file format to use, e.g., png, jpg const FORMAT = ImageUtils.FORMAT_JPEG; const TTS_CARDS_PER_IMAGE = 69; const TTS_MAX_ROWS = 7; const getName = () => 'TTSDeck'; const getDescription = () => 'Generates a TTS deck image and JSON file'; const getVersion = () => 1.0; const getPluginType = () => arkham.plugins.Plugin.INJECTED; function unload() { unregisterAll(); } // Creates a test button during development that calls unload() to clean up. testProjectScript(); // Hack to override the default return value of 1 function copyCount(copies_list, name) { const entries = copies_list.getListEntries().map(x => String(x)); if (entries.indexOf(String(name)) == -1) { return 2; } else { return copies_list.getCopyCount(name); } } // export front face, or retrive it from a cached file // TODO: handle two-sided cards function makeCardImage(card) { const component = ResourceKit.getGameComponentFromFile(card.file); const cache_dir = new File(card.parent.file, '.ttsdeck_cache'); const cached_file = new File(cache_dir, card.file.name + '.' + FORMAT); if (cached_file.exists() && cached_file.lastModified() > card.file.lastModified()) { println("Got cached image for card", card); return ImageUtils.read(cached_file); } else { println("Generating image for card ", card); const sheets = component.createDefaultSheets(); const card_image = sheets[0].paint(arkham.sheet.RenderTarget.EXPORT, RESOLUTION); cache_dir.mkdir(); ImageUtils.write(card_image, cached_file, FORMAT, -1, false, RESOLUTION); return card_image; } } function TTSDeckPage(busy_props, page_num, page_cards, copies_list) { this.rows = Math.min(Math.ceil(Math.sqrt(page_cards.length)), TTS_MAX_ROWS); this.columns = Math.ceil(page_cards.length / this.rows); this.deck_image = null; let deck_graphics; this.card_jsons = []; for (let row = 0; row < this.rows; row++) { for (let col = 0; col < this.columns && row * this.columns + col < page_cards.length; col++) { if (busy_props.cancelled) return; let index = row * this.columns + col; let card = page_cards[index]; busy_props.status = "Processing Card " + card; busy_props.currentProgress = (page_num - 1) * TTS_CARDS_PER_IMAGE + index; try { let component = ResourceKit.getGameComponentFromFile(card.file); let copies = copyCount(copies_list, card.baseName); for (let ii = 0; ii < copies; ii++) { this.card_jsons.push(TTSJson.makeCardJSON(page_num * 100 + index, component.getName())); } let card_image = makeCardImage(card); if (!this.deck_image) { this.deck_image = ImageUtils.create( card_image.width * this.columns, card_image.height * this.rows, false); deck_graphics = this.deck_image.createGraphics(); } deck_graphics.drawImage(card_image, col * card_image.width, row * card_image.height, null); } catch (ex) { alert('Error while processing ' + card + ': ' + ex, true); } } println("End of Row ", row); } // TODO: this should either prompt the user or provde automatic uploading somewhere this.face_url = String((new File(page_cards[0].parent.file, page_cards[0].parent.getName() + '_' + page_num + '.' + FORMAT)).toPath().toUri()); this.back_url = "TODO"; } function makeTTSDeck(busy_props, cards, copies_list) { const pages = []; busy_props.title = "Processing Cards"; busy_props.maximumProgress = cards.length; for (let page_num = 0; page_num * TTS_CARDS_PER_IMAGE < cards.length; page_num++) { let page_cards = cards.slice(page_num * TTS_CARDS_PER_IMAGE, (page_num + 1) * TTS_CARDS_PER_IMAGE); printf("Making page %d, with %d cards:\n", page_num + 1, page_cards.length); pages.push(new TTSDeckPage(busy_props, page_num + 1, page_cards, copies_list)); if (busy_props.cancelled) return [,]; } const deck_json = TTSJson.makeDeckJSON(pages); return [deck_json, pages.map(page => page.deck_image)]; } function run() { const ttsDeckAction = JavaAdapter(TaskAction, { getLabel: () => 'Generate TTS Deck', getActionName: () => 'ttsdeck', // Applies to Deck Tasks appliesTo: function appliesTo(project, task, member) { if (member != null || task == null) { return false; } const type = task.settings.get(Task.KEY_TYPE); if (NewTaskType.DECK_TYPE.equals(type)) { return true; } return false; }, perform: function perform(project, task, member) { member = ProjectUtilities.simplify(project, task, member); Eons.setWaitCursor(true); try { Thread.busyWindow( (busy_props) => this.performImpl(busy_props, member), 'Setting up...', true); } catch (ex) { Error.handleUncaught(ex); } finally { Eons.setWaitCursor(false); } }, performImpl: function performImpl(busy_props, member) { let copies_list; try { copies_list = new CopiesList(member); } catch (ex) { copies_list = new CopiesList(); alert("unable to read copies list, using card count of 2 for all files", true); } const children = member.getChildren(); const page_cards = children.filter(child => { if (ProjectUtilities.matchExtension(child, 'eon')) { let component = ResourceKit.getGameComponentFromFile(child.file); return component.isDeckLayoutSupported(); } else { return false; } }); const [deck_json, deck_images] = makeTTSDeck(busy_props, page_cards, copies_list); if (busy_props.cancelled) return; const saved_object = TTSJson.makeSavedObjectJSON([deck_json], member.getName()); busy_props.status = ""; busy_props.maximumProgress = -1; busy_props.title = "Writing JSON"; const json_file = new File(member.file, member.getName() + '.json'); ProjectUtilities.writeTextFile(json_file, JSON.stringify(saved_object, null, 4)); busy_props.title = "Writing Images"; busy_props.maximumProgress = deck_images.length; deck_images.forEach((deck_image, index) => { busy_props.currentProgress = index; const image_file = new File(member.file, member.getName() + '_' + (index + 1) + '.' + FORMAT); ImageUtils.write(deck_image, image_file, FORMAT, -1, false, RESOLUTION); }); member.synchronize(); } }); ActionRegistry.register(ttsDeckAction, Actions.PRIORITY_IMPORT_EXPORT); }