📄 mapwriter.java
字号:
/* * Tiled Map Editor, (c) 2004-2006 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Adam Turk <aturk@biggeruniverse.com> * Bjorn Lindeijer <b.lindeijer@xs4all.nl> */package tiled.io;import java.io.FileFilter;import java.io.OutputStream;import tiled.core.Map;import tiled.core.TileSet;/** * Used by Tiled to denote a plugin for writing maps. The map file * can have any format, as long as the MapWriter implementor accepts * instances of {@link tiled.core.Map} and {@link TileSet}. * * $Id: MapWriter.java 683 2006-06-25 14:17:37Z bjorn $ */public interface MapWriter extends PluggableMapIO, FileFilter{ /** * Saves a map to a file. * * @param map * @param filename the filename of the map file * @throws Exception */ public void writeMap(Map map, String filename) throws Exception; /** * Saves a tileset to a file. * * @param set * @param filename the filename of the tileset file * @throws Exception */ public void writeTileset(TileSet set, String filename) throws Exception; /** * Writes a map to an already opened stream. Useful * for maps which are part of a larger binary dataset * * @param map the Map to be written * @param out * @throws Exception */ public void writeMap(Map map, OutputStream out) throws Exception; /** * Overload this to write a tileset to an open stream. * * @param set * @param out * @throws Exception */ public void writeTileset(TileSet set, OutputStream out) throws Exception;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -