想法

利用随机数控制圆圈的大小、位置以及颜色,可以产生随机的美感。

让小球动起来,并且在屏幕边界处产生反弹效果。

代码

   1: float circle_x = (float) 0.0;

   2: float circle_y = (float) 0.0;

   3: float circle_radius = (float) 0.0;

   4: int circle_color = 0;

   5:  

   6: public void setup() {

   7:   size(displayWidth, displayHeight);

   8:   background(0);

   9:   frameRate(10);

  10: }

  11:  

  12: public void draw() {

  13:   

  14:   circle_x = random(0, displayWidth);

  15:   circle_y = random(0, displayHeight);

  16:   circle_radius = random(0, (displayWidth + displayHeight) / 20);

  17:   

  18:   circle_color = (int) random(0, 255);

  19:   

  20:   colorMode(RGB, 255);

  21:   fill(0,0,0,5);

  22:   rect(0, 0, displayWidth, displayHeight);

  23:   

  24:   noStroke();

  25:   colorMode(HSB, 255);

  26:   fill(circle_color, 255, 255);

  27:   ellipse(circle_x, circle_y, circle_radius, circle_radius);

  28:     

  29: }

截图

生成exe文件

将上述代码粘贴到Processing编辑器中,选择“Export Application”,导出成exe文件。

设置为屏幕保护程序

将exe文件更改后缀名为scr,右键->安装。

做一些变化

   1: float circle_x = (float) 0.0;

   2: float circle_y = (float) 0.0;

   3: float circle_radius = (float) 0.0;

   4: int circle_color = 0;

   5:  

   6: public void setup() {

   7:     size(displayWidth, displayHeight);

   8:     background(0);

   9:     frameRate(10);

  10: }

  11:  

  12: public void draw() {

  13:     

  14:       circle_x = random(0, displayWidth);

  15:       circle_y = random(0, displayHeight);

  16:       circle_radius = random(0, (displayWidth + displayHeight) / 5);

  17:       

  18:       circle_color = (int) random(0, 255);

  19:       

  20:       colorMode(RGB, 255);

  21: //      fill(0,0,0,5);

  22: //      rect(-1, -1, displayWidth+1, displayHeight+1);

  23:       

  24:       //noStroke();

  25:       colorMode(HSB, 255);

  26:       stroke(circle_color, 255, 255);

  27:       fill(circle_color, 255, 255);

  28:       noFill();

  29:       ellipse(circle_x, circle_y, circle_radius, circle_radius);

  30:       ellipse(circle_x, circle_y, circle_radius-1, circle_radius-1);

  31:         

  32: }

截图

运动的泡泡

   1: public static final int circle_nums = 200;

   2:  

   3: class BCircle

   4: {

   5:     public BCircle(float x, float y, float radius, float x_delta, float y_delta, int color) {

   6:         super();

   7:         this.x = x;

   8:         this.y = y;

   9:         this.radius = radius;

  10:         this.x_delta = x_delta;

  11:         this.y_delta = y_delta;

  12:         this.color = color;

  13:     }

  14:     private float x = (float) 0.0;

  15:     private float y = (float) 0.0;

  16:     private float radius = (float) 0.0;

  17:     

  18:     private float x_delta = (float) 0.0;

  19:     private float y_delta = (float) 0.0;    

  20:     private int color = 0; // 0 - 255

  21:     

  22:     private boolean valueInRange(float val, float min, float max)

  23:     {

  24:         return (val >= min >> val < max);

  25:     }

  26:     

  27:     public void moveOneStep()

  28:     {

  29:         if (valueInRange(x+x_delta, 0, displayWidth) >> 

  30:                 valueInRange(y+y_delta, 0, displayHeight))

  31:         {

  32:             x += x_delta;

  33:             y += y_delta;

  34:         }

  35:  

  36:         if (!valueInRange(x+x_delta, 0, displayWidth))

  37:         {

  38:             x_delta = -x_delta;

  39:             x += x_delta;

  40:         }

  41:         

  42:         if (!valueInRange(y+y_delta, 0, displayHeight))

  43:         {

  44:             y_delta = - y_delta;

  45:             y += y_delta;

  46:         }

  47:             

  48:     }

  49:     

  50:     public void draw(int theme)

  51:     {      

  52:         switch(theme)

  53:         {

  54:             case 1:

  55:             {

  56:                 noFill();

  57:                 colorMode(HSB, 255);

  58:                 stroke(color, 255, 255);

  59:                 ellipse(x, y, radius+2, radius+2);

  60:                 ellipse(x, y, radius+1, radius+1);

  61:                 ellipse(x, y, radius, radius);

  62:             }

  63:             break;

  64:             case 2:

  65:             {

  66:                 colorMode(HSB, 255);

  67:                 fill(color, 255, 255);

  68:                 ellipse(x, y, radius+2, radius+2);

  69:                 ellipse(x, y, radius+1, radius+1);

  70:                 ellipse(x, y, radius, radius);

  71:             }

  72:         }

  73:         

  74:     }

  75: }

  76:  

  77: List<BCircle> circles;

  78:  

  79: public void setup() {

  80:   size(displayWidth, displayHeight);

  81:   background(0);

  82:   frameRate(10);

  83:   

  84:   circles = new ArrayList<BCircle>(circle_nums);

  85: }

  86:  

  87: public void draw() {

  88:   

  89:     colorMode(RGB, 255);

  90:     fill(0,0,0,30);

  91:     rect(-1, -1, displayWidth+1, displayHeight+1);

  92:     

  93:     if (circles.size() < circle_nums)

  94:     {

  95:         float x = random(0, displayWidth);

  96:         float y = random(0, displayHeight);

  97:         float radius = random(20, (displayWidth + displayHeight) / 20);

  98:         float x_delta = random(-50, 50); 

  99:         float y_delta = random(-50, 50);

 100:         int color = (int) random(0, 255);

 101:         BCircle circle = new BCircle(x, y, radius, x_delta, y_delta, color);

 102:         

 103:         circles.add(circle);

 104:     }

 105:     

 106:     for(int i=0;i<circles.size();i++)

 107:     {

 108:         circles.get(i).moveOneStep();

 109:         circles.get(i).draw(1);

 110:     }    

 111: }

两种主题,截图

 

用processing生成屏保程序的更多相关文章

  1. 用Processing生成屏保(二)

    代码 1: class TPoint 2: { 3: public TPoint(int _x, int _y) { 4: super(); 5: this._x = _x; 6: this._y = ...

  2. wpf 制作播放视频的屏保程序、而且能分屏显示

    这个程序用到了WPF里  “visual_Brush”(主要是为了实现分屏显示) , “UserControl” ,这两个知识点: 在屏保状态下播放指定文件夹下的视频,而且能分屏显示: 把编译好的屏保 ...

  3. 用Qt写的简单屏保程序

    近日老大提别人家产品都有屏保程序,貌似我们也该有,简单在qtcn.org请教了一下,写了个小程序! 晕倒,半天没找到上传功能!我已经上传到qtcn上了,地址如下: http://www.qtcn.or ...

  4. WinForm 屏保程序

    this.ShowInTaskbar = false; this.FormBorderStyle = FormBorderStyle.None; this.WindowState = FormWind ...

  5. 3D屏保程序:汉诺塔

    学过程序的人一定记得汉诺塔.我们学的第一个程序是HelloWorld,而碰到的第一个坑就是汉诺塔,短短十几行代码,不知花费了多少时间精力去理解.我记得当年的开发环境还是蓝屏的,汉诺塔程序的输出还是一行 ...

  6. python写的屏保程序

    __author__ = 'ChenYan' from random import randint from tkinter import * class Randball(): def __init ...

  7. [archlinux][plasma][screensaver] plasma5配置屏保程序,没成功(-_-#)

    plamsa用了好久,一直没有屏保.我想要玄酷的屏保! 用xscreensaver, 之前用FVWM2的时候,就用过了,很玄酷. 一,安装 pacman -S xscreensaver 二,配置 xs ...

  8. 3D屏保: 线圈

    LineFlower3DSP 一个3D屏保程序,算法的原理类似于圆内轮旋线的生成. 下载地址: http://files.cnblogs.com/WhyEngine/LineFlower3D_sp.z ...

  9. 3D屏保:N皇后

    前几天园子里有人发表关于8皇后的算法.只有代码,没有能运行的DEMO多枯燥.于是我这两天抽时间写了个N皇后的屏保程序.程序启动后会从4皇后到14皇后显示其所有排列,每隔0.5秒自动切换一次.按下空格键 ...

随机推荐

  1. 测开之路二十九:Flask基础之jinja2模板

    中文文档:http://docs.jinkan.org/docs/jinja2/ 与静态资源一样,Flask默认的模板目录名为templates,如果有需要的话和static一样,要在初始化的时候声明 ...

  2. python中%代表什么意思?

    http://zhidao.baidu.com/link?url=MQLeRPckNfavTJYvMQbVj_pdNn5SSadtFvfEk7nNCusPcPW4T1O45esIuttuBW3EnSB ...

  3. CSS最基础的语法和三种引入方式

    **CSS语法** CSS 规则由两个主要的部分构成:选择器,以及一条或多条声明.选择器通常是您需要改变样式的 HTML 元素. selector {declaration1; declaration ...

  4. flysql 里两种传参的方式

    传参的方式,两个标清楚: for lists_bx_goods in out_list: sql = XDO().get_update_sql('init_goods_test', { "一 ...

  5. Linux下MySQL 命令导入导出sql文件

    导出数据库 直接使用命令: mysqldump -u root -p database >database.sql 然后回车输入密码就可以了: mysqldump -u 数据库链接用户名 -p ...

  6. 简单DP入门(二) 最长上升子序列及其优化

    最长上升子序列解决问题: 有N个数,求出它最长的上升子序列并输出长度. 在题里不会讲的这么直白,这个算法往往会与其他的算法混在一起使用. 在这篇文章中不会出现其他的例题,为了让大家更好的理解,我只会对 ...

  7. VC++实现窗口置顶

    最近在跟着Visual C++网络编程开发与实战视频教程做HttpSourceViewer这个MFC项目时,可以看我Github上的项目HttpSourceViewer,目前基本实现了所有功能,就是关 ...

  8. python基础----求水仙花数

    水仙花数,即一个三位数,各个位上的数字的三次方相加,等于该数本身.如:153 = 1**3 + 5 ** 3 + 3 ** 3 def is_narc_num(n): # if n <100 o ...

  9. MVC:页面提交JQ动态生成的输入框的值得解决方案:

    一,动态生成JS写法 <script type="text/javascript"> , , , ); function Additional() { var num ...

  10. docker镜像仓库

    搭建私有镜像仓库 Docker Hub作为Docker默认官方公共镜像,如果想自己搭建私有镜像仓库,官方也提供registry镜像,使得搭建私有仓库非常简单. 下载registry镜像并启动 [roo ...