blob: d9aec593c5539ad9cd9e34abaa29e6b17fd26c18 [file] [log] [blame]
Jason Sams69f0d312009-08-03 18:11:17 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
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
19/**
20 * @hide
21 **/
22public class Script extends BaseObj {
Jason Samsfbf0b9e2009-08-13 12:59:04 -070023 public static final int MAX_SLOT = 16;
24
Jason Sams69f0d312009-08-03 18:11:17 -070025 boolean mIsRoot;
Jason Sams43ee06852009-08-12 17:54:11 -070026 Type[] mTypes;
Jason Sams334ea0c2009-08-17 13:56:09 -070027 boolean[] mWritable;
Jason Samsbe2e8412009-09-16 15:04:38 -070028 Invokable[] mInvokables;
29
30 public static class Invokable {
31 RenderScript mRS;
32 Script mScript;
33 int mSlot;
34 String mName;
35
36 Invokable() {
37 mSlot = -1;
38 }
39
40 public void execute() {
41 mRS.nScriptInvoke(mScript.mID, mSlot);
42 }
43 }
Jason Sams69f0d312009-08-03 18:11:17 -070044
Jason Sams2d71bc72010-03-26 16:06:43 -070045 protected void invoke(int slot) {
46 mRS.nScriptInvoke(mID, slot);
47 }
48
Jason Sams96ed4cf2010-06-15 12:15:57 -070049 protected void invoke(int slot, FieldPacker v) {
50 if (v != null) {
51 mRS.nScriptInvokeV(mID, slot, v.getData());
52 } else {
53 mRS.nScriptInvoke(mID, slot);
54 }
Jason Sams4d339932010-05-11 14:03:58 -070055 }
56
57
Jason Sams69f0d312009-08-03 18:11:17 -070058 Script(int id, RenderScript rs) {
59 super(rs);
60 mID = id;
61 }
62
Jason Sams69f0d312009-08-03 18:11:17 -070063 public void bindAllocation(Allocation va, int slot) {
Jason Sams771bebb2009-12-07 12:40:12 -080064 mRS.validate();
Jason Sams4d339932010-05-11 14:03:58 -070065 if (va != null) {
66 mRS.nScriptBindAllocation(mID, va.mID, slot);
67 } else {
68 mRS.nScriptBindAllocation(mID, 0, slot);
69 }
70 }
71
72 public void setVar(int index, float v) {
73 mRS.nScriptSetVarF(mID, index, v);
74 }
75
76 public void setVar(int index, int v) {
77 mRS.nScriptSetVarI(mID, index, v);
78 }
79
Jason Sams0b9a22c2010-07-02 15:35:19 -070080 public void setVar(int index, boolean v) {
81 mRS.nScriptSetVarI(mID, index, v ? 1 : 0);
82 }
83
Jason Sams4d339932010-05-11 14:03:58 -070084 public void setVar(int index, FieldPacker v) {
85 mRS.nScriptSetVarV(mID, index, v.getData());
Jason Sams69f0d312009-08-03 18:11:17 -070086 }
87
Jason Sams22534172009-08-04 16:58:20 -070088 public void setTimeZone(String timeZone) {
Jason Sams771bebb2009-12-07 12:40:12 -080089 mRS.validate();
Jason Sams22534172009-08-04 16:58:20 -070090 try {
91 mRS.nScriptSetTimeZone(mID, timeZone.getBytes("UTF-8"));
92 } catch (java.io.UnsupportedEncodingException e) {
93 throw new RuntimeException(e);
94 }
95 }
Jason Sams69f0d312009-08-03 18:11:17 -070096
97 public static class Builder {
98 RenderScript mRS;
Jason Sams69f0d312009-08-03 18:11:17 -070099
100 Builder(RenderScript rs) {
101 mRS = rs;
102 }
Jason Sams69f0d312009-08-03 18:11:17 -0700103 }
104
Jason Sams2d71bc72010-03-26 16:06:43 -0700105
106 public static class FieldBase {
107 protected Element mElement;
108 protected Type mType;
109 protected Allocation mAllocation;
110
111 protected void init(RenderScript rs, int dimx) {
112 mAllocation = Allocation.createSized(rs, mElement, dimx);
113 mType = mAllocation.getType();
114 }
115
116 protected FieldBase() {
117 }
118
119 public Element getElement() {
120 return mElement;
121 }
122
123 public Type getType() {
124 return mType;
125 }
126
127 public Allocation getAllocation() {
128 return mAllocation;
129 }
130
131 //@Override
132 public void updateAllocation() {
133 }
134
135
136 //
137 /*
138 public class ScriptField_UserField
139 extends android.renderscript.Script.FieldBase {
140
141 protected
142
143 }
144
145 */
146
147 }
Jason Sams69f0d312009-08-03 18:11:17 -0700148}
149