-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConsolePhotoGenerator-POV.java
62 lines (60 loc) · 2.53 KB
/
ConsolePhotoGenerator-POV.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
* ConsolePhotoGenerator.java
*
* Sweet Home 3D, Copyright (c) 2017 Emmanuel PUYBARET / eTeks <info@eteks.com>
*
* 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 com.eteks.sweethome3d.utilities;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import org.sunflow.system.UI;
import org.sunflow.system.ui.ConsoleInterface;
import com.eteks.sweethome3d.io.HomeFileRecorder;
import com.eteks.sweethome3d.j3d.PhotoRenderer;
import com.eteks.sweethome3d.model.Camera;
import com.eteks.sweethome3d.model.Home;
import com.eteks.sweethome3d.model.HomeEnvironment;
import com.eteks.sweethome3d.model.RecorderException;
/**
* Sweet Home 3D Console photo generator.
* @author Emmanuel Puybaret
*/
public class ConsolePhotoGenerator {
public static void main(final String [] args) throws RecorderException, IOException {
String homeFile = args [0];
String homePhoto = args [1];
Home home = new HomeFileRecorder().readHome(homeFile);
HomeEnvironment environment = home.getEnvironment();
PhotoRenderer renderer = new PhotoRenderer(home,
environment.getPhotoQuality() == 3
? PhotoRenderer.Quality.HIGH
: PhotoRenderer.Quality.LOW);
UI.set(new ConsoleInterface());
BufferedImage image = new BufferedImage(
environment.getPhotoWidth(), environment.getPhotoHeight(),
BufferedImage.TYPE_INT_ARGB);
for (Camera camera : home.getStoredCameras()) {
renderer.render(image, camera, null);
int dotIndex = homePhoto.lastIndexOf('.');
String cameraPhoto = homePhoto.substring(0, dotIndex) + "-"
+ camera.getName().replaceAll("/|\\\\|:|;", "-").replace(File.pathSeparatorChar, '-').replace(File.separatorChar, '-')
+ homePhoto.substring(dotIndex);
ImageIO.write(image, homePhoto.substring(dotIndex + 1), new File(cameraPhoto));
}
}
}