我正在研究一个随机名称生成器,用于我正在开发的游戏中,问题是有不同的物种有不同的命名风格,我想要一个名称生成器来处理所有这些。我对这个问题的第一部分进行了排序 - 名称生成器使用了一系列模板,每种模式的玩家/ NPC都有一套。
我遇到的主要问题是一些元音需要有一个随机选择的重音符号。我搜索过并搜索过,但我找不到随机选择字符然后对其应用重音符号的方法。那么,通过选择字母然后对其应用重音标记,可以通过什么方式组成重音字母?
答案 0 :(得分:4)
Unicode有'组合'字符代表大多数类型的重音符号。从您创建的组合字符数组中随机选择组合字符将非常容易。然后你可以把你喜欢的任何口音放在你喜欢的任何角色上。
http://en.wikipedia.org/wiki/Combining_character
由于这些代码点由代码点表示,因此您可以将它们视为一个字符:
String s = "a" + "\u0300"; // latin lowercase letter a + combining grave accent
char combining_grave_accent = '\u0300';
答案 1 :(得分:1)
嗯也许使用2d数组并创建一个转换表,它将有2列和有多少行(有多少个有重音的字符),现在在第1列存储每个重音值,在第二个存储中值un-accented即a,e,i,o,u,当你为名字生成元音时,你可以随机选择是否重音,如果你选择重音它,你将遍历2d数组得到所有使用'a'或其他任何内容的重音值,并通过获取和检查第二列中的值(以便拾取所有重音的a),然后随机选择一个使用...
多远来看,我知道java中没有捷径。
编辑: 这里有一些代码符合我的建议:
import java.util.ArrayList;
/**
*
* @author David
*/
public class JavaApplication145 {
static char[][] chars = new char[6][6];
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
createConversionTable();
char c = 'u';
ArrayList<String> charsList = getAccentedChar(c);
for (int i = 0; i < charsList.size(); i++) {
System.out.println(charsList.get(i));
}
}
private static void createConversionTable() {
chars[0] = new char[]{'ù', 'ü', 'é', 'ê', 'ä', 'à'};
chars[1] = new char[]{'u', 'u', 'e', 'e', 'a', 'a'};
}
private static ArrayList getAccentedChar(char c) {
ArrayList<String> charsList = new ArrayList<>();
for (int i = 0; i < chars[0].length; i++) {
for (int x = 0; x < chars[1].length; x++) {
if (chars[i][x] == c) {
charsList.add(chars[i - 1][x] + "");
}
}
}
return charsList;
}
}
答案 2 :(得分:-1)
需要相同的东西,所以我最终做到了这一点:
/**
* Given a letter and an accent, return the char with the accent included.
*
* @param accentCode: The accent char; i.e '~', '´';
* @param letter: Letter to put accent in it.
* @return: Char with {@code letter} with accent if it was a valid letter.
*/
public static int getAccent(char accentChar, int letter) {
int index = 0;
boolean upperCase = false;
for (char vogal : vogalList) {
if (letter == vogal) {
if (index >= 5) {
index -= 5;
upperCase = true;
}
for (int accentType = 0; accentType < convertTable.length; accentType++) {
if (convertTable[accentType][0] == accentChar) {
char converted = convertTable[accentType][index + 1];
if (converted != '-') {
if (upperCase)
converted = Character.toUpperCase(converted);
return converted;
}
}
}
}
index++;
}
return letter;
}
/**
* Verify if {@code charID} is an accent character;
*
* @param charID: Character code id to be verified.
* @return: true in case {@code charID} is an accent character id.
*/
public static boolean isAccent(int charID) {
for (int i = 0; i < convertTable.length; i++) {
if (convertTable[i][0] == charID)
return true;
}
return false;
}
private static final char[] vogalList = { 'a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U' };
private static final char[][] convertTable = { { '´', 'á', 'é', 'í', 'ó', 'ú' }, { '`', 'à', 'è', 'ì', 'ò', 'ù' }, { '^', 'â', 'ê', 'î', 'ô', 'û' }, { '~', 'ã', '-', '-', 'õ', '-' }, { '¨', 'ä', 'ë', 'ï', 'ö', 'ü' } };