자바, 1017 바이트
입력은 다음과 같이 공백으로 구분 된 목록 l s1 s2 s3 s4 h a b
입니다.
출력은 숫자를 포함하는 2 차원 배열입니다.
프로그램:
import java.util.*;import static java.lang.Math.*;class C{public static void main(String[]a){int b=a.length,d=0;float[]c=new float[b];for(;d<b;){c[d]=Float.parseFloat(a[d++]);}e=(int)(pow(2,c[0])+1);f=new float[e][e];f[0][0]=c[1];f[0][e-1]=c[2];f[e-1][0]=c[3];f[e-1][e-1]=c[4];g=c[5];float h=c[6],i=c[7];s(0,0,e-1,e-1,h,i);System.out.print(Arrays.deepToString(f));}static int e;static float[][]f;static float g;static void s(int q,int r,int s,int t,float h,float i){if(s-q<2|t-r<2|q<0|r<0|s>=e|t>=e)return;float o,p;int m=(q+s)/2,n=(r+t)/2;f[m][n]=(float)(a(q,r,s,r,q,t,s,t)+random()*(i-h)-h);d(m,r,m-q,o=h*g,p=i*g);d(q,n,m-q,o,p);d(m,t,m-q,o,p);d(s,n,m-q,o,p);}static void d(int x,int y,int e,float h,float i){float o,p;f[x][y]=(float)(a(x,y-e,x+e,y,x,y+e,x-e,y)+random()*(i-h)-h);s(x-e,y-e,x,y,o=h*g,p=i*g);s(x,y-e,x+e,y,o,p);s(x-e,y,x,y+e,o,p);s(x,y,x+e,y+e,o,p);}static float a(int...j){float k=0,l=0;for(int d=0;d<j.length;d+=2){if(j[d]<0|j[d+1]<0|j[d]>=e|j[d+1]>=e)continue;l++;k+=f[j[d]][j[d+1]];}return k/l;}}
들여 쓰기되어 맵을 표시하는 프로그램 :
import java.util.*;
import java.awt.image.*;
import java.awt.*;
import javax.swing.*;
import static java.lang.Math.*;
class D{
public static void main(String[]a){
int b=a.length,d=0;
float[]c=new float[b];
for(;d<b;){
c[d]=Float.parseFloat(a[d++]);
}
e=(int)(pow(2,c[0])+1);
f=new float[e][e];
f[0][0]=c[1];
f[0][e-1]=c[2];
f[e-1][0]=c[3];
f[e-1][e-1]=c[4];
g=c[5];
float h=c[6],i=c[7];
s(0,0,e-1,e-1,h,i);
showImage(f);
}
static int e;
static float[][]f;
static float g;
static void s(int q,int r,int s,int t,float h,float i){
if(s-q<2|t-r<2|q<0|r<0|s>=e|t>=e)
return;
float o,p;
int m=(q+s)/2,n=(r+t)/2;
f[m][n]=(float)(a(q,r,s,r,q,t,s,t)+random()*(i+h)-h);
d(m,r,m-q,o=h*g,p=i*g);
d(q,n,m-q,o,p);
d(m,t,m-q,o,p);
d(s,n,m-q,o,p);
}
static void d(int x,int y,int e,float h,float i){
float o,p;
f[x][y]=(float)(a(x,y-e,x+e,y,x,y+e,x-e,y)+random()*(i-h)+h);
s(x-e,y-e,x,y,o=h*g,p=i*g);
s(x,y-e,x+e,y,o,p);
s(x-e,y,x,y+e,o,p);
s(x,y,x+e,y+e,o,p);
}
static float a(int...j){
float k=0,l=0;
for(int d=0;d<j.length;d+=2){
if(j[d]<0|j[d+1]<0|j[d]>=e|j[d+1]>=e)
continue;
l++;
k+=f[j[d]][j[d+1]];
}
return k/l;
}
public static void showImage(float[][] f){
float maxHeight = Float.MIN_VALUE;
float minHeight = Float.MAX_VALUE;
for (float[] row : f){
for (float height : row){
if (height > maxHeight){
maxHeight = height;
}
if (height < minHeight){
minHeight = height;
}
}
}
int e = f.length;
BufferedImage image = new BufferedImage(e, e, BufferedImage.TYPE_INT_RGB);
for (int x = 0; x < e; x++){
for (int y = 0; y < e; y++){
Color color = Color.getHSBColor((float)((f[x][y] - minHeight)/(maxHeight - minHeight)), 1, 1);
image.setRGB(x,y,color.getRGB());
}
}
JFrame frame = new JFrame("Picture");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new JComponent(){
@Override
public void paint(Graphics g){
g.drawImage(image, 0, 0, getWidth(), getHeight(), null);
}
});
frame.setVisible(true);
frame.setBounds(0,0,e,e);
}
}
Java에서 맵을 표시하는 함수는 다음과 같습니다.
public static void showImage(float[][] map){
float maxHeight = Float.MIN_VALUE;
float minHeight = Float.MAX_VALUE;
for (float[] row : map){
for (float height : row){
if (height > maxHeight){
maxHeight = height;
}
if (height < minHeight){
minHeight = height;
}
}
}
int size = map.length;
BufferedImage image = new BufferedImage(size, size, BufferedImage.TYPE_INT_RGB);
for (int x = 0; x < size; x++){
for (int y = 0; y < size; y++){
Color color = Color.getHSBColor((float)((map[x][y] - minHeight)/(maxHeight - minHeight)), 1, 1);
image.setRGB(x,y,color.getRGB());
}
}
JFrame frame = new JFrame("Picture");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new JComponent(){
@Override
public void paint(Graphics g){
g.drawImage(image, 0, 0, getWidth(), getHeight(), null);
}
});
frame.setVisible(true);
frame.setBounds(0,0,size,size);
}
이 이미지의 크기는 모두 7
입니다. 4 씨앗은 5
, 10
, 15
,와 20
.
a
하고 b
있습니다 -10
및 10
각각.
거칠기는에서 시작 .1
하여 .1
최대 증가 합니다 1
.
지형 생성 코드가 곧 나옵니다 !!!
이미지가 곧 온다 !!!