blob: 871ca1664e5745b02775f76fd631be17ff608fff [file] [log] [blame]
Romain Guy59206df2009-09-09 13:07:58 -07001/*
2 * Copyright (C) 2009 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
17
18package com.android.wallpaper.fall;
19
20import android.content.Context;
21import android.view.SurfaceHolder;
22import android.view.MotionEvent;
23import android.renderscript.RenderScript;
24import android.renderscript.RSSurfaceView;
25
26class FallView extends RSSurfaceView {
27 private FallRS mRender;
28
29 public FallView(Context context) {
30 super(context);
31 setFocusable(true);
32 setFocusableInTouchMode(true);
33 }
34
35 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
36 super.surfaceChanged(holder, format, w, h);
37
38 RenderScript RS = createRenderScript(false);
39 mRender = new FallRS(w, h);
Romain Guy0ac0b3f2009-09-13 03:40:04 -070040 mRender.init(RS, getResources(), false);
Romain Guy59206df2009-09-09 13:07:58 -070041 mRender.start();
42 }
43
44 @Override
45 public boolean onTouchEvent(MotionEvent event) {
46 switch (event.getAction()) {
47 case MotionEvent.ACTION_DOWN:
48 case MotionEvent.ACTION_MOVE:
49 mRender.addDrop(event.getX(), event.getY());
50 try {
51 Thread.sleep(16);
52 } catch (InterruptedException e) {
53 // Ignore
54 }
55 break;
56 }
57 return true;
58 }
59}