blob: df9d8019f28d8b7c359960bd7d57f8f0fe29ae8d [file] [log] [blame]
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -07001/*
Jason Sams65c80f82012-05-08 17:30:26 -07002 * Copyright (C) 2008-2012 The Android Open Source Project
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.renderscript;
18
Artur Satayev2ebb31c2020-01-08 12:24:36 +000019import android.compat.annotation.UnsupportedAppUsage;
20import android.content.res.AssetManager;
21import android.content.res.Resources;
22import android.os.Environment;
23
Alex Sakhartchouke27cdee2010-12-17 11:41:08 -080024import java.io.File;
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -070025import java.io.InputStream;
Alex Sakhartchouk27f50522010-08-18 15:46:43 -070026import java.util.HashMap;
Alex Sakhartchouke27cdee2010-12-17 11:41:08 -080027import java.util.Map;
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -070028
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070029/**
Tim Murraya9084222013-04-05 22:06:43 +000030 * @hide
Jason Sams65c80f82012-05-08 17:30:26 -070031 * @deprecated in API 16
Tim Murraya9084222013-04-05 22:06:43 +000032 * <p>This class gives users a simple way to draw hardware accelerated text.
Robert Ly11518ac2011-02-09 13:57:06 -080033 * Internally, the glyphs are rendered using the Freetype library and an internal cache of
34 * rendered glyph bitmaps is maintained. Each font object represents a combination of a typeface,
35 * and point size. You can create multiple font objects to represent styles such as bold or italic text,
36 * faces, and different font sizes. During creation, the Android system quieries device's screen DPI to
37 * ensure proper sizing across multiple device configurations.</p>
38 * <p>Fonts are rendered using screen-space positions and no state setup beyond binding a
Tim Murrayc11e25c2013-04-09 11:01:01 -070039 * font to the RenderScript is required. A note of caution on performance, though the state changes
Robert Ly11518ac2011-02-09 13:57:06 -080040 * are transparent to the user, they do happen internally, and it is more efficient to
41 * render large batches of text in sequence. It is also more efficient to render multiple
42 * characters at once instead of one by one to improve draw call batching.</p>
43 * <p>Font color and transparency are not part of the font object and you can freely modify
Tim Murraya9084222013-04-05 22:06:43 +000044 * them in the script to suit the user's rendering needs. Font colors work as a state machine.
Robert Ly11518ac2011-02-09 13:57:06 -080045 * Every new call to draw text uses the last color set in the script.</p>
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -070046 **/
47public class Font extends BaseObj {
48
Alex Sakhartchouk27f50522010-08-18 15:46:43 -070049 //These help us create a font by family name
50 private static final String[] sSansNames = {
51 "sans-serif", "arial", "helvetica", "tahoma", "verdana"
52 };
53
54 private static final String[] sSerifNames = {
55 "serif", "times", "times new roman", "palatino", "georgia", "baskerville",
56 "goudy", "fantasy", "cursive", "ITC Stone Serif"
57 };
58
59 private static final String[] sMonoNames = {
60 "monospace", "courier", "courier new", "monaco"
61 };
62
63 private static class FontFamily {
64 String[] mNames;
65 String mNormalFileName;
66 String mBoldFileName;
67 String mItalicFileName;
68 String mBoldItalicFileName;
69 }
70
71 private static Map<String, FontFamily> sFontFamilyMap;
72
Jason Sams65c80f82012-05-08 17:30:26 -070073 /**
74 * @deprecated in API 16
75 */
Alex Sakhartchouk27f50522010-08-18 15:46:43 -070076 public enum Style {
Jason Sams65c80f82012-05-08 17:30:26 -070077 /**
78 * @deprecated in API 16
79 */
Alex Sakhartchouk27f50522010-08-18 15:46:43 -070080 NORMAL,
Jason Sams65c80f82012-05-08 17:30:26 -070081 /**
82 * @deprecated in API 16
83 */
Alex Sakhartchouk27f50522010-08-18 15:46:43 -070084 BOLD,
Jason Sams65c80f82012-05-08 17:30:26 -070085 /**
86 * @deprecated in API 16
87 */
Mathew Inwood15324472018-08-06 11:18:49 +010088 @UnsupportedAppUsage
Alex Sakhartchouk27f50522010-08-18 15:46:43 -070089 ITALIC,
Jason Sams65c80f82012-05-08 17:30:26 -070090 /**
91 * @deprecated in API 16
92 */
Alex Sakhartchouk27f50522010-08-18 15:46:43 -070093 BOLD_ITALIC;
94 }
95
96 private static void addFamilyToMap(FontFamily family) {
97 for(int i = 0; i < family.mNames.length; i ++) {
98 sFontFamilyMap.put(family.mNames[i], family);
99 }
100 }
101
102 private static void initFontFamilyMap() {
103 sFontFamilyMap = new HashMap<String, FontFamily>();
104
105 FontFamily sansFamily = new FontFamily();
106 sansFamily.mNames = sSansNames;
Christian Robertsonbeb2b5c2011-08-09 15:24:25 -0700107 sansFamily.mNormalFileName = "Roboto-Regular.ttf";
108 sansFamily.mBoldFileName = "Roboto-Bold.ttf";
109 sansFamily.mItalicFileName = "Roboto-Italic.ttf";
110 sansFamily.mBoldItalicFileName = "Roboto-BoldItalic.ttf";
Alex Sakhartchouk27f50522010-08-18 15:46:43 -0700111 addFamilyToMap(sansFamily);
112
113 FontFamily serifFamily = new FontFamily();
114 serifFamily.mNames = sSerifNames;
Stephen Hines6f09d082014-06-11 17:57:16 -0700115 serifFamily.mNormalFileName = "NotoSerif-Regular.ttf";
116 serifFamily.mBoldFileName = "NotoSerif-Bold.ttf";
117 serifFamily.mItalicFileName = "NotoSerif-Italic.ttf";
118 serifFamily.mBoldItalicFileName = "NotoSerif-BoldItalic.ttf";
Alex Sakhartchouk27f50522010-08-18 15:46:43 -0700119 addFamilyToMap(serifFamily);
120
121 FontFamily monoFamily = new FontFamily();
122 monoFamily.mNames = sMonoNames;
123 monoFamily.mNormalFileName = "DroidSansMono.ttf";
124 monoFamily.mBoldFileName = "DroidSansMono.ttf";
125 monoFamily.mItalicFileName = "DroidSansMono.ttf";
126 monoFamily.mBoldItalicFileName = "DroidSansMono.ttf";
127 addFamilyToMap(monoFamily);
128 }
129
130 static {
131 initFontFamilyMap();
132 }
133
134 static String getFontFileName(String familyName, Style style) {
135 FontFamily family = sFontFamilyMap.get(familyName);
136 if(family != null) {
137 switch(style) {
138 case NORMAL:
139 return family.mNormalFileName;
140 case BOLD:
141 return family.mBoldFileName;
142 case ITALIC:
143 return family.mItalicFileName;
144 case BOLD_ITALIC:
145 return family.mBoldItalicFileName;
146 }
147 }
148 // Fallback if we could not find the desired family
149 return "DroidSans.ttf";
150 }
151
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000152 Font(long id, RenderScript rs) {
Alex Sakhartchouk0de94442010-08-11 14:41:28 -0700153 super(id, rs);
Yang Nieb4dd082016-03-24 09:40:32 -0700154 guard.open("destroy");
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700155 }
156
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700157 /**
Jason Sams65c80f82012-05-08 17:30:26 -0700158 * @deprecated in API 16
Alex Sakhartchouk27f50522010-08-18 15:46:43 -0700159 * Takes a specific file name as an argument
160 */
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800161 static public Font createFromFile(RenderScript rs, Resources res, String path, float pointSize) {
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700162 rs.validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800163 int dpi = res.getDisplayMetrics().densityDpi;
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000164 long fontId = rs.nFontCreateFromFile(path, pointSize, dpi);
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700165
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800166 if(fontId == 0) {
167 throw new RSRuntimeException("Unable to create font from file " + path);
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700168 }
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800169 Font rsFont = new Font(fontId, rs);
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700170
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800171 return rsFont;
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700172 }
Alex Sakhartchouk27f50522010-08-18 15:46:43 -0700173
Jason Sams65c80f82012-05-08 17:30:26 -0700174 /**
175 * @deprecated in API 16
176 */
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800177 static public Font createFromFile(RenderScript rs, Resources res, File path, float pointSize) {
Alex Sakhartchouke27cdee2010-12-17 11:41:08 -0800178 return createFromFile(rs, res, path.getAbsolutePath(), pointSize);
179 }
180
Jason Sams65c80f82012-05-08 17:30:26 -0700181 /**
182 * @deprecated in API 16
183 */
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800184 static public Font createFromAsset(RenderScript rs, Resources res, String path, float pointSize) {
185 rs.validate();
186 AssetManager mgr = res.getAssets();
187 int dpi = res.getDisplayMetrics().densityDpi;
188
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000189 long fontId = rs.nFontCreateFromAsset(mgr, path, pointSize, dpi);
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800190 if(fontId == 0) {
191 throw new RSRuntimeException("Unable to create font from asset " + path);
192 }
193 Font rsFont = new Font(fontId, rs);
194 return rsFont;
Alex Sakhartchouke27cdee2010-12-17 11:41:08 -0800195 }
196
Jason Sams65c80f82012-05-08 17:30:26 -0700197 /**
198 * @deprecated in API 16
199 */
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800200 static public Font createFromResource(RenderScript rs, Resources res, int id, float pointSize) {
201 String name = "R." + Integer.toString(id);
202
203 rs.validate();
204 InputStream is = null;
205 try {
206 is = res.openRawResource(id);
207 } catch (Exception e) {
208 throw new RSRuntimeException("Unable to open resource " + id);
209 }
210
211 int dpi = res.getDisplayMetrics().densityDpi;
212
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000213 long fontId = 0;
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800214 if (is instanceof AssetManager.AssetInputStream) {
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000215 long asset = ((AssetManager.AssetInputStream) is).getNativeAsset();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800216 fontId = rs.nFontCreateFromAssetStream(name, pointSize, dpi, asset);
217 } else {
218 throw new RSRuntimeException("Unsupported asset stream created");
219 }
220
221 if(fontId == 0) {
222 throw new RSRuntimeException("Unable to create font from resource " + id);
223 }
224 Font rsFont = new Font(fontId, rs);
225 return rsFont;
Alex Sakhartchouke27cdee2010-12-17 11:41:08 -0800226 }
227
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700228 /**
Jason Sams65c80f82012-05-08 17:30:26 -0700229 * @deprecated in API 16
Alex Sakhartchouk27f50522010-08-18 15:46:43 -0700230 * Accepts one of the following family names as an argument
Stephen Hines3d782662011-06-23 16:18:28 -0700231 * and will attempt to produce the best match with a system font:
232 *
Alex Sakhartchouk27f50522010-08-18 15:46:43 -0700233 * "sans-serif" "arial" "helvetica" "tahoma" "verdana"
234 * "serif" "times" "times new roman" "palatino" "georgia" "baskerville"
235 * "goudy" "fantasy" "cursive" "ITC Stone Serif"
236 * "monospace" "courier" "courier new" "monaco"
Stephen Hines3d782662011-06-23 16:18:28 -0700237 *
238 * Returns default font if no match could be found.
Alex Sakhartchouk27f50522010-08-18 15:46:43 -0700239 */
Mathew Inwood15324472018-08-06 11:18:49 +0100240 @UnsupportedAppUsage
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800241 static public Font create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) {
Alex Sakhartchouk27f50522010-08-18 15:46:43 -0700242 String fileName = getFontFileName(familyName, fontStyle);
Alex Sakhartchouke27cdee2010-12-17 11:41:08 -0800243 String fontPath = Environment.getRootDirectory().getAbsolutePath();
244 fontPath += "/fonts/" + fileName;
245 return createFromFile(rs, res, fontPath, pointSize);
Alex Sakhartchouk27f50522010-08-18 15:46:43 -0700246 }
Alex Sakhartchouke27cdee2010-12-17 11:41:08 -0800247
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700248}