Unexpected-Keyboard/srcs/juloo.keyboard2/Emoji.java

72 lines
1.7 KiB
Java
Raw Normal View History

2015-10-23 14:22:43 +02:00
package juloo.keyboard2;
import android.content.res.Resources;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.IOException;
import java.io.BufferedReader;
import java.util.ArrayList;
2015-10-23 14:22:43 +02:00
import java.util.HashMap;
2015-10-24 16:32:49 +02:00
public class Emoji extends KeyValue
2015-10-23 14:22:43 +02:00
{
private final String _desc;
2015-10-24 16:32:49 +02:00
protected Emoji(String name, String bytecode, String desc)
2015-10-23 14:22:43 +02:00
{
super(name, bytecode, CHAR_NONE, EVENT_NONE, 0);
2015-10-23 14:22:43 +02:00
_desc = desc;
}
public String getDescription()
{
return (_desc);
}
public static int num_groups = 0;
private static Emoji[][] emojis_by_group = new Emoji[][]{};
2015-10-23 14:22:43 +02:00
public static Emoji getEmojiByName(String name)
{
return ((Emoji)KeyValue.getKeyByName(name));
}
public static Emoji[] getEmojisByGroup(int group_id)
2015-10-23 14:22:43 +02:00
{
return (emojis_by_group[group_id]);
2015-10-23 14:22:43 +02:00
}
/* Read the list of emojis from a raw file. Will initialize only once. */
public static void init(Resources res)
{
if (num_groups > 0)
return;
try
{
ArrayList<Emoji[]> groups = new ArrayList<Emoji[]>();
InputStream inputStream = res.openRawResource(R.raw.emojis);
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
String line;
while (true)
{
line = reader.readLine();
if (line == null)
break;
int group_len = Integer.parseInt(line);
Emoji[] grp = new Emoji[group_len];
for (int i = 0; i < group_len; i++)
{
line = reader.readLine();
String[] f = line.split(" ", 3);
grp[i] = new Emoji(f[0], f[1], f[2]);
}
groups.add(grp);
}
num_groups = groups.size();
emojis_by_group = groups.toArray(new Emoji[0][]);
}
catch (IOException e) {}
}
2015-10-23 14:22:43 +02:00
}