It is currently Wed Jun 19, 2013 9:13 am

All times are UTC + 1 hour




Post new topic Reply to topic  [ 18 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: General Resource Links
PostPosted: Mon Jan 05, 2004 4:15 am 
Offline
Moderator
Moderator

Joined: Sat Dec 27, 2003 3:55 am
Posts: 3332
Location: Great Southern Land
Don't know about you but I am always looking for free resources, and so thought it would be nice to resource links (images, sounds, utilities, etc) all in the one spot.

- - - - - - - - - - - - - - - - - - - - - -

IMAGES:

http://www.reinerstileset.4players.de:1059/
Good Isometric and flat tiles and sprites.

http://www.vbexplorer.com/VBExplorer/vb ... nloads.asp
Has some links and zips.

http://www.cs.uu.nl/people/markov/gmaker/resource.html
Some tile resources to DL, and some links to other resources.

http://www.absolutecross.com/
Textures and web resources

ICONS
http://www.st-software.at/grafiken.htm
http://www.activevb.de/members/uwe/Down ... cicons.zip
http://www.elsterpferd.de/gifs/symb.htm
Ripped from this thread: http://forums.purebasic.com/english/vie ... php?t=8265
- - - - - - - - - - - - - - - - - - - - - -

SOUND

http://www.midiworld.com/
Midis :P

http://www.flashkit.com/soundfx/
General sound effects, categorised

- - - - - - - - - - - - - - - - - - - - - -

RESOURCES

http://www.mentalis.org/agnet/apiguide.shtml
API list - Database of over 900 functions, documented, and explained with example. Several have dotNET equiv and dotNET example code.
Ripped from this thread: http://forums.purebasic.com/english/vie ... php?t=9041 submitted by GedB

http://www.thefreecountry.com/
Lots of good stuff for programmers, categorised.

http://www.ambrosine.com/
Links to things to do with games.

- - - - - - - - - - - - - - - - - - - - - -


Last edited by Dare2 on Thu Apr 15, 2004 9:49 am, edited 5 times in total.

Top
 Profile  
 
 Post subject:
PostPosted: Mon Jan 05, 2004 3:01 pm 
Offline
Enthusiast
Enthusiast

Joined: Sat Apr 26, 2003 7:24 pm
Posts: 458
Location: Germany
I think this topic should be posted as sticky, so that everybody can add his own links and have a big reference.

Good idea!

_________________
The truth is never confined to a single number - especially scientific truth!


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jan 05, 2004 5:43 pm 
Offline
PureBasic Expert
PureBasic Expert

Joined: Fri Apr 25, 2003 6:41 pm
Posts: 1125
midis:
http://www.vgmusic.com/


Top
 Profile  
 
 Post subject: SpriteLib GPL
PostPosted: Sun Feb 22, 2004 3:16 am 
Offline
Addict
Addict

Joined: Fri Apr 25, 2003 11:10 pm
Posts: 854
Quote:
SpriteLib GPL is a collection of hundreds of free high quality, animated images that are ready to be plugged into your game creations. Supporting several different game themes, you'll find SpriteLib GPL an indispensible resource. Read the SpriteLib GPL FAQ to learn more.

NOTE: GPL stands for General Public License. It's not an "Open-Source" type license or does it put SpriteLib GPL in the Public Domain. Read the license.txt file located in the archive for more information.

http://www.arifeldman.com/games/spritelib.html


Top
 Profile  
 
 Post subject:
PostPosted: Tue Feb 24, 2004 6:27 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Thu Jun 26, 2003 2:09 am
Posts: 731
Location: Spain (Galicia)
I.T. Mate Group Freeware Library
http://www.it-mate.co.uk/main_content/
Very useful.
Lots of icons, programs, resources and much more.


Top
 Profile  
 
 Post subject:
PostPosted: Fri Apr 09, 2004 9:37 pm 
Offline
Addict
Addict

Joined: Fri Apr 25, 2003 11:10 pm
Posts: 854
something to toy with, a symbolic dll that allows you to do basic
symbolic math. (beware of the taylor function, it may take forever)
http://www.mb.hs-wismar.de/~pawel/Uwe/casE.html

example of use:

Code:
; Thorsten Pawletta, University of Wismar, Dep. of Mechanical-, Process- and Environmental Eng.,
; --------------------------------------------------------------------------------
;
; Interpreter for symbolic manipulation of mathematical expressions
;
; Author: Jens- Uwe Dolinsky (other projects)
; Students' group: I93
; E-mail u.dolinsky@iname.com
;
; http://www.mb.hs-wismar.de/~pawel/Uwe/casE.html
; Win32 dynamic link library (DLL) (Last Built: Mon 05.02.01)
; http://www.mb.hs-wismar.de/~pawel/Uwe/win32symbolic.zip

; Conventions and function reference:(last update: Wed 12.09.01)
; New feature: Equation solving !
; Next update (~10/01): incl. e.g. symbolic solution of linear equation systems
; Identifiers of variables und functions consist of at least one letter followed by several letters or digits. Note that in e.g. DIFF(xxx,x) the expression xxx is an individual identifier and not x*x*x. Also e.g. ax is not a*x. This rule holds for all identifiers.
; If identifiers and numbers exceed 80 characters in length, they will be truncated down to 80 characters.
; If the interpreter encounters unknown functions or known functions with a number of arguments different from the specification below, those functions remain unevaluated! solve(3x+2,x) remains unevaluated since 3x+2 is no equation. Instead solve(3x+2=0,x) solves the equation 3x+2=0 for x.
; Convention Explanation
; operators +,-,*,/,^ basic operations
; constants PI circle's circumference
; basic functions SQRT(x) square root
; EXP(x) e- function
; LN(x) natural logarithm
; SIN(x),COS(x),TAN(x),COT(x) trigonometric functions
; ASIN(x),ACOS(x),ATAN(x) inverse trigonometric functions
; SINH(x),COSH(x) hyperbolic functions
; ABS(x) absolute value of x
; FAK(x) factorial of x
; substitution SUBST(a,x,expr) substitutes in expression a the subexpression x trough expression expr
; Equation solving SOLVE(expr1=expr2,x) The linear or quadratic equation expr1-expr2=0 will be solved symbolically for variable x.
; differentiation DIFF(f,x) derivative of f with respect to x
; DIFF(f,x,n) n- th order derivative of f with respect to x
; integration INT(f,x) indefinite integral of f with respect to x
; INT(f,x,i1,i2) definite integral of f with respect to x in the interval i1 to i2
; Taylor approximation TAYLOR(f,x,x0,n) Taylor approximation of f with respect to x on x=x0 in n-th order
; Fourieranalysis FOURIER(f,x,t1,t2,n) Fourier series of f with respect to x for the interval t1 to t2 in n-th order
; Floating Point Calculation APPROX(x) The constant expression x will be calculated using float numbers
; examples:
;
; Differentiation: DIFF(-1/5*x^2*TAN(LN(x)/2),x)
; DIFF(SIN(t^x),t)
; Partial derivation: DIFF(DIFF(1/(x^2 + y^2),x),y)
; Integration: INT(x^4*SIN(PI*x),x)
; INT(3*x^4+SIN(x),x,0,4)
; Numeric calculation: (8+123)*67-6
; APPROX(SIN(23)*COS(3*0.7))
; Evaluation of
; Polynomials: SUBST(2x^2+x-3,x,4)
; (value of polynomial 2x^2+x-3 at x=4);
; Taylor series: TAYLOR(SINH(x^2),x,0,5)
; Fourier analysis: FOURIER(x,x,0,1,6)
; Equation solving: SOLVE(3*x^2-8 = x-9+x^2,x)

err.l
a$=Space(63999)
If OpenLibrary(1, "symbolic.dll")
  Debug "floating point numbers:"
  err=CallFunction(1, "symbolic_calculate","approx(ln(2))",a$,63999)
  Debug "approx(ln(2)) --> "+a$
  Debug "fractions and large integers:"
  err=CallFunction(1, "symbolic_calculate","1-1/3+1/5-1/7",a$,63999)
  Debug "1-1/3+1/5-1/7 --> "+a$
  err=CallFunction(1, "symbolic_calculate","FAK(33)",a$,63999)
  Debug "FAK(33) --> "+a$
  Debug "symbolic"
  err=CallFunction(1, "symbolic_calculate","x+2*x",a$,63999)
  Debug "x+2*x --> "+a$
  CloseLibrary(1)
EndIf


Top
 Profile  
 
 Post subject:
PostPosted: Fri Apr 09, 2004 9:41 pm 
Offline
Addict
Addict
User avatar

Joined: Thu Oct 16, 2003 8:30 pm
Posts: 1903
Location: South Florida
jack wrote:
something to toy with, a symbolic dll that allows you to do basic
symbolic math. (beware of the taylor function, it may take forever)
http://www.mb.hs-wismar.de/~pawel/Uwe/casE.html

example of use:

Code:
; Thorsten Pawletta, University of Wismar, Dep. of Mechanical-, Process- and Environmental Eng.,
; --------------------------------------------------------------------------------
;
; Interpreter for symbolic manipulation of mathematical expressions
;
; Author: Jens- Uwe Dolinsky (other projects)
; Students' group: I93
; E-mail u.dolinsky@iname.com
;
; http://www.mb.hs-wismar.de/~pawel/Uwe/casE.html
; Win32 dynamic link library (DLL) (Last Built: Mon 05.02.01)
; http://www.mb.hs-wismar.de/~pawel/Uwe/win32symbolic.zip

; Conventions and function reference:(last update: Wed 12.09.01)
; New feature: Equation solving !
; Next update (~10/01): incl. e.g. symbolic solution of linear equation systems
; Identifiers of variables und functions consist of at least one letter followed by several letters or digits. Note that in e.g. DIFF(xxx,x) the expression xxx is an individual identifier and not x*x*x. Also e.g. ax is not a*x. This rule holds for all identifiers.
; If identifiers and numbers exceed 80 characters in length, they will be truncated down to 80 characters.
; If the interpreter encounters unknown functions or known functions with a number of arguments different from the specification below, those functions remain unevaluated! solve(3x+2,x) remains unevaluated since 3x+2 is no equation. Instead solve(3x+2=0,x) solves the equation 3x+2=0 for x.
; Convention Explanation
; operators +,-,*,/,^ basic operations
; constants PI circle's circumference
; basic functions SQRT(x) square root
; EXP(x) e- function
; LN(x) natural logarithm
; SIN(x),COS(x),TAN(x),COT(x) trigonometric functions
; ASIN(x),ACOS(x),ATAN(x) inverse trigonometric functions
; SINH(x),COSH(x) hyperbolic functions
; ABS(x) absolute value of x
; FAK(x) factorial of x
; substitution SUBST(a,x,expr) substitutes in expression a the subexpression x trough expression expr
; Equation solving SOLVE(expr1=expr2,x) The linear or quadratic equation expr1-expr2=0 will be solved symbolically for variable x.
; differentiation DIFF(f,x) derivative of f with respect to x
; DIFF(f,x,n) n- th order derivative of f with respect to x
; integration INT(f,x) indefinite integral of f with respect to x
; INT(f,x,i1,i2) definite integral of f with respect to x in the interval i1 to i2
; Taylor approximation TAYLOR(f,x,x0,n) Taylor approximation of f with respect to x on x=x0 in n-th order
; Fourieranalysis FOURIER(f,x,t1,t2,n) Fourier series of f with respect to x for the interval t1 to t2 in n-th order
; Floating Point Calculation APPROX(x) The constant expression x will be calculated using float numbers
; examples:
;
; Differentiation: DIFF(-1/5*x^2*TAN(LN(x)/2),x)
; DIFF(SIN(t^x),t)
; Partial derivation: DIFF(DIFF(1/(x^2 + y^2),x),y)
; Integration: INT(x^4*SIN(PI*x),x)
; INT(3*x^4+SIN(x),x,0,4)
; Numeric calculation: (8+123)*67-6
; APPROX(SIN(23)*COS(3*0.7))
; Evaluation of
; Polynomials: SUBST(2x^2+x-3,x,4)
; (value of polynomial 2x^2+x-3 at x=4);
; Taylor series: TAYLOR(SINH(x^2),x,0,5)
; Fourier analysis: FOURIER(x,x,0,1,6)
; Equation solving: SOLVE(3*x^2-8 = x-9+x^2,x)

err.l
a$=Space(63999)
If OpenLibrary(1, "symbolic.dll")
  Debug "floating point numbers:"
  err=CallFunction(1, "symbolic_calculate","approx(ln(2))",a$,63999)
  Debug "approx(ln(2)) --> "+a$
  Debug "fractions and large integers:"
  err=CallFunction(1, "symbolic_calculate","1-1/3+1/5-1/7",a$,63999)
  Debug "1-1/3+1/5-1/7 --> "+a$
  err=CallFunction(1, "symbolic_calculate","FAK(33)",a$,63999)
  Debug "FAK(33) --> "+a$
  Debug "symbolic"
  err=CallFunction(1, "symbolic_calculate","x+2*x",a$,63999)
  Debug "x+2*x --> "+a$
  CloseLibrary(1)
EndIf


WHAT, IT STILL WONT LET ME DIVIDE BY ZERO!!!??

(sorry 5th rum and coke) :lol:

- np

_________________
LAPTOP 4GB RAM / XPS M1210 / FULLY LOADED / MOBILE BROADBAND


Top
 Profile  
 
 Post subject:
PostPosted: Fri Apr 09, 2004 10:28 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Mon Jun 02, 2003 1:06 pm
Posts: 714
Location: Norway
NoahPhense wrote:
(sorry 5th rum and coke) :lol:
- np


what?!? only 5th?!? :lol:

_________________

AMD Athlon XP2400, 512 MB RAM, Hercules 3D Prophet 9600 256MB RAM, WinXP
PIII 800MHz, 320 MB RAM, Nvidia Riva Tnt 2 Mach 64 (32MB), WinXP + Linux
17" iMac, 1.8 GHz G5, 512 MB DDR-RAM, 80 GB HD, 64 MB Geforce FX 5200, SuperDrive, OSX


Top
 Profile  
 
 Post subject: ..
PostPosted: Fri Apr 09, 2004 10:36 pm 
Offline
Addict
Addict
User avatar

Joined: Thu Oct 16, 2003 8:30 pm
Posts: 1903
Location: South Florida
LarsG wrote:
NoahPhense wrote:
(sorry 5th rum and coke) :lol:
- np


what?!? only 5th?!? :lol:


Yeah, but I haven't eaten anything today.. <bg>

emm waiting for the pizza to arrive.. ;)

- np

_________________
LAPTOP 4GB RAM / XPS M1210 / FULLY LOADED / MOBILE BROADBAND


Top
 Profile  
 
 Post subject: Free 3D model poly reduction tool
PostPosted: Thu Jul 15, 2004 1:09 am 
Offline
User
User

Joined: Mon Nov 03, 2003 5:34 am
Posts: 12
For the 3D crowd, here's a free 3D model poly reduction tool I came across.

www.paralelo.com.br/en/solucoes/tecnolo ... /index.php

---


Top
 Profile  
 
 Post subject:
PostPosted: Tue Nov 08, 2005 8:45 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Wed Apr 13, 2005 10:45 pm
Posts: 701
Location: Idaho, USA
Derby: Free, Open-source Cross-platform Multi-user database:

http://db.apache.org/derby


Top
 Profile  
 
 Post subject:
PostPosted: Fri Nov 25, 2005 1:41 am 
Offline
Addict
Addict

Joined: Fri Apr 25, 2003 11:10 pm
Posts: 854
Quote:
IEEE-754 Floating-Point Conversion
From Decimal Floating-Point
To 32-bit and 64-bit Hexadecimal Representations
Along with Their Binary Equivalents

http://babbage.cs.qc.edu/IEEE-754/IEEE-754.html
you can save the web page and it will work offline.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Dec 17, 2005 1:00 am 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Wed Apr 13, 2005 10:45 pm
Posts: 701
Location: Idaho, USA
Belarc Advisor - Free Personal PC Audit (version 7.0t)

http://www.belarc.com/free_download.html


Top
 Profile  
 
 Post subject: Far Manager - Programming API Plugins
PostPosted: Sun Mar 05, 2006 12:49 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Thu Jun 26, 2003 2:09 am
Posts: 731
Location: Spain (Galicia)
http://api.farmanager.com/en/index.html


Top
 Profile  
 
 Post subject:
PostPosted: Sun Jun 25, 2006 4:59 am 
Offline
Enthusiast
Enthusiast

Joined: Fri Apr 25, 2003 8:57 pm
Posts: 329
SpriteLib has moved to here: http://www.flyingyogi.com/fun/spritelib.html

Russell

_________________
*** Diapers and politicians need to be changed...for the same reason! ***
*** Make every vote equal: Abolish the Electoral College ***
*** www.au.org ***


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 18 posts ]  Go to page 1, 2  Next

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  

 


Powered by phpBB © 2008 phpBB Group
subSilver+ theme by Canver Software, sponsor Sanal Modifiye