Giter VIP home page Giter VIP logo

coolapk-niupi's Introduction

  • ๐Ÿ‘‹ Hi, Iโ€™m @solderwire
  • ๐Ÿ‘€ Iโ€™m interested in hardware & software design of embedded systems, such as 8051, STM32 and ESP32; and many computer-related stuff
  • ๐ŸŒฑ Iโ€™m currently learning MATLAB, STM32 and ESP32 programming, PCB design with Altium and EasyEDA
  • ๐Ÿ’ž๏ธ Iโ€™m looking to collaborate on open-source hardware designs
  • ๐Ÿ“ซ How to reach me... [email protected]

coolapk-niupi's People

Stargazers

 avatar

Watchers

 avatar

coolapk-niupi's Issues

8bit version for z88dk

niupi

.. it should work also on MSX and other supported targets ;)

// zcc +zx -lndos -create-app -llib3d -DGFXSCALEX=1/2 bgitest2.c

#include <stdio.h>
#include <stdlib.h>
#include <bgi.h>

#define MAXSIZE 340
#define SIZE 20

#define fillrectangle bar

int * cowcolor[] = {1,2,3,4,5,6,0,7,8,9,10,11,12};

#define SKIN1 cowcolor[0]
#define SKIN2 cowcolor[1]
#define HAND cowcolor[9]
#define HORN cowcolor[3]
#define EYE cowcolor[10]
#define BEER cowcolor[5]
#define FOAM cowcolor[6]
#define CUP cowcolor[7]
#define MOUTH cowcolor[8]
#define NOSE1 cowcolor[9]
#define NOSE2 cowcolor[10]
#define EAR cowcolor[11]
#define COOLAPK 12

int msperframe = 3;

void p(void)
{
csleep(msperframe);
}

void SetColor(fill, back)
{
//setfillcolor(fill);
//setbkcolor(back);
setfillstyle(fill,back);
}

void Pol(int pointset[], int count, int * fill)
{
//SetColor(fill, fill);
drawpoly(count, pointset);
p();
}

void DrawNiupi(void)
{
int gdriver = DETECT, gmode, errorcode;

int i = 0;
//HWND hwnd = initgraph(MAXSIZE, MAXSIZE + 20, 0);		//drawing window

   /* initialize graphics and local variables */

initgraph(&gdriver, &gmode, "");

int tri1[] = {140,180,80,180,110,200};
int tri2[] = {95,190,110,200,125,190};
int tri3[] = {100,20,100,60,80,60};
int tri4[] = {160,20,160,60,180,60};
int pol1[] = {80,180,110,200,140,180,160,180,160,140,180,120,220,200,210,220,200,200,200,300,120,300};
int pol2[] = {180,120,180,70,320,140,320,320,260,320,260,300};
int pol3[] = {160,140,180,120,180,70,200,70,200,50,180,50,130,40,80,50,60,50,60,70,80,70,80,120,60,140};
int pol4[] = {200,200,210,220,220,200,230,220,240,200,250,220,260,200,260,240,200,240};
setbkcolor(WHITE);
//settextcolor(BLACK);
//LOGFONT f;
//gettextstyle(&f);                     // Get current font settings
//f.lfHeight = 12;                      // Set the font height to
//f.lfQuality = 4;					// Set the output effect to antialiasing
//settextstyle(&f);
cleardevice();
//setlinecolor(BLACK);
for (i = 0; i <= 12; i++)
{
	//SetColor(cowcolor[i], cowcolor[i]);
	SetColor(cowcolor[i], cowcolor[i]);
	fillrectangle(i * SIZE, 340, 20 + i * SIZE, 360);
}

p();
Pol(pol1, 11, SKIN2);
//setlinecolor(BLACK);
Pol(tri1, 3, BLACK);
Pol(tri2, 3, MOUTH);
//setlinecolor(SKIN1);
Pol(pol2, 6, SKIN1);
//setlinecolor(BLACK);


SetColor(HAND, HAND);
fillrectangle(50, 240, 70, 320);
p();
fillrectangle(20, 260, 60, 320);
p();
line(40, 280, 60, 280);
p();
line(40, 300, 60, 300);
p();

SetColor(SKIN1, SKIN1);
fillrectangle(70, 300, 200, 320);
p();
//setlinecolor(SKIN1);
line(120, 300, 200, 300);
//setlinecolor(BLACK);
p();

//setlinecolor(NOSE2);
SetColor(NOSE1, NOSE1);
fillrectangle(60, 140, 160, 180);
p();

SetColor(NOSE2, NOSE2);
fillrectangle(80, 150, 100, 160);
p();
fillrectangle(120, 150, 140, 160);
p();

//setlinecolor(BLACK);
Pol(tri3, 3, EAR);
Pol(tri4, 3, EAR);
Pol(pol3, 13, SKIN1);

//setlinecolor(CUP);
Pol(pol4, 9, FOAM);
//setfillcolor(BEER);
fillrectangle(200, 225, 260, 310);
p();

SetColor(HAND, HAND);
//setlinecolor(BLACK);
fillrectangle(260, 220, 280, 260);
p();
fillrectangle(260, 240, 300, 300);
p();
line(260, 260, 280, 260);
p();
line(260, 280, 280, 280);
p();

//setlinecolor(CUP);
//setfillcolor(CUP);
fillrectangle(200, 310, 260, 320);
p();

//setlinecolor(BLACK);
//setfillcolor(EYE);
SetColor(EYE, EYE);
fillrectangle(100, 80, 120, 100);
p();
fillrectangle(140, 80, 160, 100);
p();
//setfillcolor(BLACK);
fillrectangle(107, 87, 113, 93);
p();
fillrectangle(147, 87, 153, 93);
p();

//setlinecolor(SKIN1);
line(180, 70, 180, 120);
p();
line(180, 120, 160, 140);
p();
outtextxy(5, 5, "CoolApk Niupi");
SetColor(COOLAPK, COOLAPK);
//setfillcolor(COOLAPK);
//setlinecolor(COOLAPK);
//fillcircle(290, 50, 30);
circle(290, 50, 30);

//setlinecolor(WHITE);
circle(280, 50, 10);
//setlinecolor(COOLAPK);
fillrectangle(289, 40, 300, 60);
//setlinecolor(WHITE);

line(288, 54, 300, 40);
line(300, 40, 306, 60);
line(306, 60, 296, 50);

// system("pause");

}

int main(void)
{
// printf("Please enter milliseconds per frame (<=0: direct playback):");
// scanf("%d", &msperframe);
DrawNiupi();
return 0;
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.