📄 glomofile.java
字号:
/******************************************************************************* ** BonnMotion - a mobility scenario generation and analysis tool ** ** Copyright (C) 2002, 2003 University of Bonn ** ** ** ** 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. ** ** ** ** This program is distributed in the hope that it will be useful, ** ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** ** GNU General Public License for more details. ** ** ** ** You should have received a copy of the GNU General Public License ** ** along with this program; if not, write to the Free Software ** ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ** *******************************************************************************/package edu.bonn.cs.iv.bonnmotion.apps;import java.io.*;import edu.bonn.cs.iv.bonnmotion.*;/** Application that creates a movement file for Glomosim (2.0.3) and Qualnet (3.5.1). */public class GlomoFile extends App { protected String name = null; public GlomoFile(String[] args) { go( args ); } public void go( String[] args ) { parse(args); Scenario s = null; if ( name == null ) { printHelp(); System.exit(0); } try { s = new Scenario(name); } catch (Exception e) { App.exceptionHandler( "Error reading file", e); } MobileNode[] node = s.getNode(); PrintWriter placements = openPrintWriter(name + ".glomo_nodes"); PrintWriter movements = openPrintWriter(name + ".glomo_mobility"); for (int i = 0; i < node.length; i++) { String[] m = node[i].movementStringGlomo(""+i); for (int j = 0; j < m.length; j++) movements.println(m[j]); String m2 = node[i].placementStringGlomo(""+i); placements.println(m2); } movements.close(); placements.close(); } protected boolean parseArg(char key, String val) { switch (key) { case 'f': name = val; return true; default: return super.parseArg(key, val); } } public static void printHelp() { System.out.println(); App.printHelp(); System.out.println("GlomoFile:"); System.out.println("\t-f <filename>"); } public static void main(String[] args) throws FileNotFoundException, IOException { new GlomoFile(args); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -