不会画圣诞树?那就用java写

程序员的圣诞树
视频演示

程序员的圣诞树

话不多数,干货走起
代码结构

在这里插入图片描述

MyPanel
import java.applet.Applet;
import java.applet.AudioClip;
import java.awt.*;
import java.awt.event.*;
import java.io.File;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URL;

import javax.imageio.ImageIO;
import javax.swing.*;

public class MyPanel extends JPanel implements ActionListener{
    int x, y ;
    JButton onOff ;
    Timer time ;
    boolean flag ;
    boolean color ;
    File file = new File("/星星.png") ;
    URL url = null;
    URI uri = null ;
    ImageIcon icon;
    AudioClip clip = null;
    MyPanel() {
        setLayout(null);
        onOff = new JButton() ;
        icon = new ImageIcon("/星星.png");
        icon.setImage(icon.getImage().getScaledInstance(50,50, 0)) ;
        onOff.addActionListener(this) ;
        onOff.setBorder(null) ;
        onOff.setContentAreaFilled(false) ;
        onOff.setBounds(0, 0, 50, 50) ;
        this.add(onOff);
        flag = true ;
        color = true ;
        time = new Timer(300,this) ;
        time.stop() ;
        try {
            uri=file.toURI();
            url = uri.toURL() ;
        }
        catch (MalformedURLException e1) {}
        clip=Applet.newAudioClip(url);
    }
    public void paintComponent(Graphics g) {
        x = 380 ;
        y = 100 ;

        Color red = new Color(255, 0, 0) ;
        Color yellow = new Color(255, 241, 0) ;
        Color blue = new Color(0x2BB1EF) ;
        Color happy = new Color(0xAEF607);
        Color happies = new Color(0xF1C4F1) ;
        Color top1 = new Color(0xFDFA6F8B, true);
        Color top2 = new Color(0x9C44F5);

        if(color) {
            drawDecoration(x, y-25, 0, top1, g);
        }
        else {
            drawDecoration(x, y-25, 0, top2, g);
        }
        drawTree(1, 4, g) ;
        if(color) {
            drawDecoration(x+22, y-44, 6, yellow, g);
            drawDecoration(x, y-22, 8, red, g);
        }
        else {
            drawDecoration(x+22, y-44, 6, red, g);
            drawDecoration(x, y-22, 8, blue, g);
        }
        x = 380-2*22;
        drawTree(3, 6, g) ;
        if(color) {
            drawDecoration(x+22, y-44, 10, blue, g);
            drawDecoration(x, y-22, 12, red, g);
        }
        else {
            drawDecoration(x+22, y-44, 10, red, g);
            drawDecoration(x, y-22, 12, yellow, g);
        }
        x = 380-4*22;
        drawTree(5, 8, g) ;
        if(color) {
            drawDecoration(x+66, y-88, 10, yellow, g);
            drawDecoration(x+44, y-66, 12, red, g);
            drawDecoration(x+22, y-44, 14, blue, g);
            drawDecoration(x, y-22, 16, yellow, g);
        }
        else {
            drawDecoration(x+66, y-88, 10, blue, g);
            drawDecoration(x+44, y-66, 12, yellow, g);
            drawDecoration(x+22, y-44, 14, red, g);
            drawDecoration(x, y-22, 16, blue, g);
        }
        x = 380-1*22;
        drwaRoot(g) ;
        drwafloor(g) ;

        //love
        if(color){
            //L
            for(x=60,y=70;x>20&&y<150;x--,y+=2){
                drawDecoration(x, y, 0, happy, g);
            }
            for(x=20;x<80;x++){
                drawDecoration(x, 150, 0, happy, g);
            }

            //O
            for(x=170,y=70;x>130&&y<150;x--,y+=2){
                drawDecoration(x, y, 0, happy, g);
            }
            for(x=230,y=70;x>190&&y<150;x--,y+=2){
                drawDecoration(x, y, 0, happy, g);
            }
            for(x=230;x>170;x--){
                drawDecoration(x, 70, 0, happy, g);
            }
            for(x=190;x>130;x--){
                drawDecoration(x, 150, 0, happy, g);
            }

            //V
            for(x=20,y=200;x<60&&y<280;x++,y+=3){
                drawDecoration(x, y, 0, happy, g);
            }
            for(x=80,y=200;x>20&&y<280;x--,y+=3){
                drawDecoration(x, y, 0, happy, g);
            }

            //E
            for(x=230;x>170;x--){
                drawDecoration(x, 200, 0, happy, g);
            }
            for(x=210;x>150;x--){
                drawDecoration(x, 240, 0, happy, g);
            }
            for(x=190;x>130;x--){
                drawDecoration(x, 280, 0, happy, g);
            }
            for(x=170,y=200;x>130&&y<280;x--,y+=2){
                drawDecoration(x, y, 0, happy, g);
            }
        }else{
            //L
            for(x=70,y=70;x>30&&y<150;x--,y+=2){
                drawDecoration(x, y, 0, happies, g);
            }
            for(x=30;x<90;x++){
                drawDecoration(x, 150, 0, happies, g);
            }

            //O
            for(x=180,y=70;x>140&&y<150;x--,y+=2){
                drawDecoration(x, y, 0, happies, g);
            }
            for(x=240,y=70;x>200&&y<150;x--,y+=2){
                drawDecoration(x, y, 0, happies, g);
            }
            for(x=240;x>180;x--){
                drawDecoration(x, 70, 0, happies, g);
            }
            for(x=200;x>140;x--){
                drawDecoration(x, 150, 0, happies, g);
            }

            //V
            for(x=30,y=200;x<70&&y<280;x++,y+=3){
                drawDecoration(x, y, 0, happies, g);
            }
            for(x=90,y=200;x>30&&y<280;x--,y+=3){
                drawDecoration(x, y, 0, happies, g);
            }

            //E
            for(x=240;x>180;x--){
                drawDecoration(x, 200, 0, happies, g);
            }
            for(x=220;x>160;x--){
                drawDecoration(x, 240, 0, happies, g);
            }
            for(x=200;x>140;x--){
                drawDecoration(x, 280, 0, happies, g);
            }
            for(x=180,y=200;x>140&&y<280;x--,y+=2){
                drawDecoration(x, y, 0, happies, g);
            }
        }

        //兔子
        if(color){
            g.setColor(red);
            g.setFont(new Font("楷体", Font.HANGING_BASELINE, 20));
            g.drawString("╭╮╭╮            ╭╮╭╮", 725, 392);
            g.drawString("╭-┴┴★╮        ╭-┴┴★╮", 702, 412);
            g.drawString("│◎   ︵│        │︵   ◎│", 699, 432);
            g.drawString("╰○--○╯        ╰○--○╯", 696, 452);
        }else{
            g.setColor(top2);
            g.setFont(new Font("楷体", Font.HANGING_BASELINE, 20));
            g.drawString("╭╮╭╮            ╭╮╭╮", 725, 392);
            g.drawString("╭-┴┴★╮        ╭-┴┴★╮", 702, 412);
            g.drawString("│◎   ︵│        │︵   ◎│", 699, 432);
            g.drawString("╰○--○╯        ╰○--○╯", 696, 452);
        }

        if(color){
            drawWrite(500,150,0, happy,g);
        }else {
            drawWrite(502,152,0, top1,g);
        }

        if(color){
            drawPhone(550,250,0, happy,g);
            drawPig(600,350,0, happy,g);
        }else {
            drawPhone(552,252,0, top2,g);
            drawPig(602,352,0, top2,g);
        }

    }
    void drawTree(int from, int to, Graphics g)	{
        Color c = new Color(9, 124, 37) ;
        g.setColor(c) ;
        for(int i=from; i<=to; i++) {
            for(int j=0; j<(i*2-1); j++) {
                g.fillRect(x, y, 20, 20);
                x += 22 ;
            }
            x = 380-i*22 ;
            y += 22 ;
        }
    }
    void drawDecoration(int tx, int ty, int num, Color c, Graphics g) {
        g.setColor(c) ;
        g.fillRoundRect(tx, ty, 18, 18, 18, 18) ;
        g.fillRoundRect(tx+num*22, ty, 18, 18, 18, 18) ;
    }

    void drawWrite(int tx, int ty, int num, Color c, Graphics g) {
        g.setColor(c);
        g.setFont(new Font("华文琥珀", Font.HANGING_BASELINE, 100));
        g.drawString("Merry Christmas", tx, ty);
    }

    void drawPhone(int tx, int ty, int num, Color c, Graphics g) {
        g.setColor(c);
        g.setFont(new Font("华文琥珀", Font.HANGING_BASELINE, 50));
        g.drawString("(  ̄ ▽ ̄)o╭╯☆#╰ _─﹏─)╯ ", tx, ty);
    }

    void drawPig(int tx, int ty, int num, Color c, Graphics g) {
        g.setColor(c);
        g.setFont(new Font("华文琥珀", Font.HANGING_BASELINE, 50));
        g.drawString("猪猪,快看!!兔子!!", tx, ty);
    }

    void drwaRoot(Graphics g) {
        Color c = new Color(131, 78, 0) ;
        g.setColor(c);
        for(int i=0; i<4; i++) {
            for(int j=0; j<3; j++) {
                g.fillRect(x, y, 20, 20);
                x += 22 ;
            }
            x = 380-1*22 ;
            y += 22 ;
        }
    }
    void drwafloor(Graphics g) {
        Color c = new Color(0x5BAA0B) ;
        g.setColor(c);
        for(int i=0; i<2; i++) {
            x=0;
            for(int j=0; j<60; j++) {
                g.fillRect(x, y, 20, 20);
                x += 22 ;
            }
            y += 22 ;
        }
    }
    public void actionPerformed(ActionEvent e) {
        if(e.getSource() == onOff) {
            if(flag) {
                ImageIcon icon = new ImageIcon("/星星.png");
                icon.setImage(icon.getImage().getScaledInstance(50,50, 0)) ;
                flag = false ;
                clip.loop();
                time.restart() ;
            }
            else {
                ImageIcon icon = new ImageIcon("/星星.png");
                icon.setImage(icon.getImage().getScaledInstance(50,50, 0)) ;
                flag = true ;
                time.stop() ;
                clip.stop() ;
            }
        }
        else if(e.getSource() == time) {
            repaint() ;
            color = !color ;
        }
    }
}
MyFrame
import javax.swing.JFrame;

public class MyFrame extends JFrame{
    MyPanel p ;
    MyFrame() {
        p = new MyPanel() ;
        add(p) ;
        setBounds(400, 200, 800, 800) ;
        setVisible(true) ;
        validate() ;
        setDefaultCloseOperation(MyFrame.EXIT_ON_CLOSE) ;
    }
}
Main
public class Main {

    public static void main(String[] args) {
        new MyFrame() ;
    }

}

加入小猿大家庭,下载源码:947117563,
  • 7
    点赞
  • 37
    收藏
    觉得还不错? 一键收藏
  • 9
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 9
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值